Skip to content

Commit

Permalink
fix: re-run everything even if the user make a force push
Browse files Browse the repository at this point in the history
  • Loading branch information
helciofranco committed Mar 22, 2024
1 parent f1167c1 commit 7793498
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release-changeset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
with:
# need this to get full git-history/clone in order to build changelogs and check changesets
fetch-depth: 0
# workaround to ensure force pushes to changeset branch use REPO_TOKEN owner's account
# see https://github.com/changesets/action/issues/70
persist-credentials: false
- uses: FuelLabs/github-actions/setups/node@master

- name: Bump and Collect Version
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-sdk-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
# workaround to ensure force pushes to changeset branch use REPO_TOKEN owner's account
# see https://github.com/changesets/action/issues/70
persist-credentials: false
- uses: FuelLabs/github-actions/setups/node@master

- name: Checking updates
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-sdk-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
# workaround to ensure force pushes to changeset branch use REPO_TOKEN owner's account
# see https://github.com/changesets/action/issues/70
persist-credentials: false
- uses: FuelLabs/github-actions/setups/node@master

- name: Checking updates
Expand Down

0 comments on commit 7793498

Please sign in to comment.