Skip to content

Commit

Permalink
fix(ci): add support_token when checking out repository (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopf authored Aug 24, 2022
1 parent 317d961 commit 438eb23
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .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,6 +11,7 @@ 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: 1 addition & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ 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: 1 addition & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ 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: 1 addition & 0 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ 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 438eb23

Please sign in to comment.