Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/release-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# - bump_type: The type of semantic version bump (major, minor, patch)
# - triggers_bump: 'true' if a version bump is needed, 'false' otherwise
check-version-bump:
uses: NexusMutual/workflows/.github/workflows/check-version-bump.yml@master
uses: NexusMutual/workflows/.github/workflows/check-version-bump.yml@chore/pnpm-setup
with:
ref: ${{ github.ref_name }}
environment: production
Expand All @@ -61,7 +61,7 @@ jobs:
rc-version:
needs: check-version-bump
if: needs.check-version-bump.outputs.triggers_bump == 'true'
uses: NexusMutual/workflows/.github/workflows/determine-rc-version.yml@master
uses: NexusMutual/workflows/.github/workflows/determine-rc-version.yml@chore/pnpm-setup
with:
package-name: $(jq -r .name package.json)
bump-type: ${{ needs.check-version-bump.outputs.bump_type }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# - bump_type: The type of semantic version bump (major, minor, patch)
# - triggers_bump: 'true' if a version bump is needed, 'false' otherwise
check-version-bump:
uses: NexusMutual/workflows/.github/workflows/check-version-bump.yml@master
uses: NexusMutual/workflows/.github/workflows/check-version-bump.yml@chore/pnpm-setup
Comment thread
mixplore marked this conversation as resolved.
Outdated
with:
ref: dev
environment: production
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
# This ensures master contains all changes from dev before creating the release
ff-master:
needs: [check-version-bump, validate-version-bump]
uses: NexusMutual/workflows/.github/workflows/fast-forward.yml@master
uses: NexusMutual/workflows/.github/workflows/fast-forward.yml@chore/pnpm-setup
with:
environment: production
source-ref: dev
Expand All @@ -85,7 +85,7 @@ jobs:
# - bumped_version: The new version number
bump-version:
needs: [check-version-bump, ff-master]
uses: NexusMutual/workflows/.github/workflows/bump.yml@master
uses: NexusMutual/workflows/.github/workflows/bump.yml@chore/pnpm-setup
with:
environment: production
ref: master
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
# This marks the commit in git history and creates a release on GitHub
git-tag-release:
needs: build-and-checks
uses: NexusMutual/workflows/.github/workflows/git-tag-github-release.yml@master
uses: NexusMutual/workflows/.github/workflows/git-tag-github-release.yml@chore/pnpm-setup
with:
environment: production
ref: master
Expand All @@ -187,7 +187,7 @@ jobs:
# The commit includes [skip ci] so release-next.yml won't run on this commit
rebase-dev:
needs: build-and-checks
uses: NexusMutual/workflows/.github/workflows/rebase.yml@master
uses: NexusMutual/workflows/.github/workflows/rebase.yml@chore/pnpm-setup
with:
environment: production
source-ref: master
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
base-branch: dev
change-type: build
fail-fast: false # Allow other matrix jobs to continue even if one fails
uses: NexusMutual/workflows/.github/workflows/open-pr.yml@master
uses: NexusMutual/workflows/.github/workflows/open-pr.yml@chore/pnpm-setup
with:
environment: production
repository: ${{ matrix.repo }}
Expand Down
Loading