Skip to content

Commit 92b9f44

Browse files
wilcorreaCopilot
andcommitted
chore: remove PicPay-specific references from copilot-sandbox
Replace hardcoded PicPay URLs and emails with generic placeholders so the image is company-agnostic. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 81af38a commit 92b9f44

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

copilot-sandbox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:24-slim
22

3-
LABEL maintainer="william.correa@picpay.com"
3+
LABEL maintainer="william.correa@devitools.com.br"
44
LABEL description="Copilot Sandbox - Docker container for GitHub Copilot CLI"
55

66
# Install minimal packages needed for CA cert setup and subsequent steps

copilot-sandbox/bin/confluence

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ check_credentials() {
6666
print_error "Missing credentials!"
6767
echo ""
6868
echo "Set environment variables:"
69-
echo " export CONFLUENCE_URL='https://picpay.atlassian.net'"
70-
echo " export CONFLUENCE_EMAIL='your-email@picpay.com'"
69+
echo " export CONFLUENCE_URL='https://your-company.atlassian.net'"
70+
echo " export CONFLUENCE_EMAIL='your-email@your-company.com'"
7171
echo " export CONFLUENCE_API_TOKEN='your-api-token'"
7272
echo ""
7373
echo "Or use shared ATLASSIAN_* vars (recommended):"
74-
echo " export ATLASSIAN_URL='https://picpay.atlassian.net'"
75-
echo " export ATLASSIAN_EMAIL='your-email@picpay.com'"
74+
echo " export ATLASSIAN_URL='https://your-company.atlassian.net'"
75+
echo " export ATLASSIAN_EMAIL='your-email@your-company.com'"
7676
echo " export ATLASSIAN_API_TOKEN='your-api-token'"
7777
echo ""
7878
echo "Get API token at: https://id.atlassian.com/manage-profile/security/api-tokens"
@@ -606,14 +606,14 @@ COMMANDS:
606606
SETUP:
607607
Option 1 - Shared Atlassian config (recommended):
608608
609-
export ATLASSIAN_URL="https://picpay.atlassian.net"
610-
export ATLASSIAN_EMAIL="your-email@picpay.com"
609+
export ATLASSIAN_URL="https://your-company.atlassian.net"
610+
export ATLASSIAN_EMAIL="your-email@your-company.com"
611611
export ATLASSIAN_API_TOKEN="your-api-token"
612612
613613
Option 2 - Confluence-specific variables:
614614
615-
export CONFLUENCE_URL="https://picpay.atlassian.net"
616-
export CONFLUENCE_EMAIL="your-email@picpay.com"
615+
export CONFLUENCE_URL="https://your-company.atlassian.net"
616+
export CONFLUENCE_EMAIL="your-email@your-company.com"
617617
export CONFLUENCE_API_TOKEN="your-api-token"
618618
619619
Get API token at: https://id.atlassian.com/manage-profile/security/api-tokens

copilot-sandbox/bin/jira

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ BOLD='\033[1m'
2828
NC='\033[0m' # No Color
2929

3030
# Configurações
31-
JIRA_BASE_URL="${JIRA_BASE_URL:-${ATLASSIAN_URL:-https://picpay.atlassian.net}}"
31+
JIRA_BASE_URL="${JIRA_BASE_URL:-${ATLASSIAN_URL:-https://your-company.atlassian.net}}"
3232
JIRA_API_VERSION="${JIRA_API_VERSION:-3}"
3333
SCRIPT_VERSION="2.0"
3434

@@ -84,7 +84,7 @@ show_help() {
8484
printf " ${GREEN}help${NC} Show this help\n\n"
8585

8686
printf "${YELLOW}Environment variables:${NC}\n"
87-
printf " ATLASSIAN_URL Base URL (default: https://picpay.atlassian.net)\n"
87+
printf " ATLASSIAN_URL Base URL (default: https://your-company.atlassian.net)\n"
8888
printf " ATLASSIAN_EMAIL Your Atlassian email ${RED}[required]${NC}\n"
8989
printf " ATLASSIAN_API_TOKEN Your API token ${RED}[required]${NC}\n"
9090
printf " JIRA_API_AUTH Override: email:api_token (takes precedence)\n"
@@ -120,7 +120,7 @@ show_help() {
120120
printf " jira get PROJ-123 | jq '.fields.description.content'\n\n"
121121

122122
printf "${YELLOW}Setup:${NC}\n"
123-
printf " export ATLASSIAN_EMAIL='your-email@picpay.com'\n"
123+
printf " export ATLASSIAN_EMAIL='your-email@your-company.com'\n"
124124
printf " export ATLASSIAN_API_TOKEN='your-api-token'\n\n"
125125

126126
printf " Generate an API token at:\n"
@@ -148,10 +148,10 @@ check_auth() {
148148
log_error "JIRA_API_AUTH is not configured"
149149
printf "\n"
150150
printf "Set it with:\n"
151-
printf " export ATLASSIAN_EMAIL='your-email@picpay.com'\n"
151+
printf " export ATLASSIAN_EMAIL='your-email@your-company.com'\n"
152152
printf " export ATLASSIAN_API_TOKEN='your-api-token'\n\n"
153153
printf "Or directly:\n"
154-
printf " export JIRA_API_AUTH='your-email@picpay.com:your-api-token'\n\n"
154+
printf " export JIRA_API_AUTH='your-email@your-company.com:your-api-token'\n\n"
155155
printf "Generate an API token at:\n"
156156
printf " ${BLUE}https://id.atlassian.com/manage-profile/security/api-tokens${NC}\n"
157157
exit 1

copilot-sandbox/container/skills/copilot-sandbox-confluence-cli/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description: Manage Confluence pages from the command line using the `confluence
1212
Preferred: shared Atlassian vars (set once, all Atlassian tools use them):
1313

1414
```bash
15-
export ATLASSIAN_URL="https://picpay.atlassian.net"
16-
export ATLASSIAN_EMAIL="your-email@picpay.com"
15+
export ATLASSIAN_URL="https://your-company.atlassian.net"
16+
export ATLASSIAN_EMAIL="your-email@your-company.com"
1717
export ATLASSIAN_API_TOKEN="your-api-token"
1818
```
1919

copilot-sandbox/container/skills/copilot-sandbox-jira-cli/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description: Manage Jira issues from the command line using the `jira` script av
1212
Preferred: shared Atlassian vars (set once, all Atlassian tools use them):
1313

1414
```bash
15-
export ATLASSIAN_URL="https://picpay.atlassian.net"
16-
export ATLASSIAN_EMAIL="your-email@picpay.com"
15+
export ATLASSIAN_URL="https://your-company.atlassian.net"
16+
export ATLASSIAN_EMAIL="your-email@your-company.com"
1717
export ATLASSIAN_API_TOKEN="your-api-token"
1818
```
1919

0 commit comments

Comments
 (0)