Skip to content

Commit

Permalink
fix: migrate gh access token
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSinclair committed Dec 18, 2024
1 parent 46baf27 commit aa500e2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
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

0 comments on commit aa500e2

Please sign in to comment.