Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: migrate gh access token #1793

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: 'rainbow-me/browser-extension-env'
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/firefoxTestsSetup
# with:
# gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
# gh-access-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run e2e parallel (Firefox)
# id: FFE2eParallel
# continue-on-error: true
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/firefoxTestsSetup
# with:
# gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
# gh-access-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run e2e Swap (Firefox)
# id: FFE2eSwap
# continue-on-error: true
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/firefoxTestsSetup
# with:
# gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
# gh-access-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run e2e Send (Firefox)
# id: FFE2eSend
# continue-on-error: true
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/firefoxTestsSetup
# with:
# gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
# gh-access-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run e2e Dapp Interactions (Firefox)
# id: FFE2eDappInteractions
# continue-on-error: true
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/chromeTestsSetup
with:
gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
gh-access-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run e2e parallel (Chrome)
id: ChromeE2EParallel
continue-on-error: true
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/chromeTestsSetup
with:
gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
gh-access-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run e2e swap (Chrome)
id: ChromeE2ESwaps
continue-on-error: true
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/chromeTestsSetup
with:
gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
gh-access-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run e2e send (Chrome)
id: ChromeE2ESend
continue-on-error: true
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/chromeTestsSetup
with:
gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
gh-access-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Optimism e2e send (Chrome)
id: ChromeOpE2ESend
continue-on-error: true
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/chromeTestsSetup
with:
gh-access-token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
gh-access-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run e2e dappInteractions (Chrome)
id: ChromeE2EDappInteractions
continue-on-error: true
Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:
# - uses: actions/checkout@v4
# with:
# repository: 'rainbow-me/browser-extension-env'
# token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
# token: ${{ secrets.GITHUB_TOKEN }}
# path: tmp
# - name: Copy dotenv
# run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: 'rainbow-me/browser-extension-env'
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: 'rainbow-me/browser-extension-env'
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-prod-chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: 'rainbow-me/browser-extension-env'
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-prod-firefox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: 'rainbow-me/browser-extension-env'
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
Expand Down
Loading