Skip to content

Commit

Permalink
fix(ci): remove unnecessary token from github action allowing PRs fro…
Browse files Browse the repository at this point in the history
…m forks (#669)

EX-6308
  • Loading branch information
CachedaCodes authored Aug 24, 2022
1 parent 0687f98 commit 0b04253
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Check branch is releasable and release alpha on main branch update
on: [push, pull_request]
concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
Expand All @@ -11,7 +11,6 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.SUPPORT_TOKEN }}
- name: Install lerna and all packages
run: npm ci
- name: Run linter in all packages
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
fetch-depth: 0
- name: Install lerna and all packages
run: npm ci
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
fetch-depth: 0
- name: Install lerna and all packages
run: npm ci
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.SUPPORT_TOKEN }}
- name: Install lerna and all packages
run: npm ci
- name: Run linter in all packages
Expand Down

0 comments on commit 0b04253

Please sign in to comment.