@@ -687,7 +687,7 @@ jobs:
687
687
# This only sets the conventional commit prefix. This workflow can't reliably determine
688
688
# what the breaking change is though. If a BREAKING CHANGE message is required then
689
689
# this PR check will fail and the commit will be amended with stafftools
690
- if [[ "\${{ steps.dependabot- metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
690
+ if [[ "\${{ steps.metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
691
691
prefix='feat!'
692
692
else
693
693
prefix='chore!'
@@ -711,7 +711,7 @@ jobs:
711
711
# and attempt to commit and push again. This is helpful because we will have a commit
712
712
# with the correct prefix that we can then --amend with @npmcli/stafftools later.
713
713
- name: Push All Changes Except Workflows
714
- if: steps.apply.outputs.changes && steps.push-all .outcome == 'failure'
714
+ if: steps.apply.outputs.changes && steps.push.outcome == 'failure'
715
715
env:
716
716
GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }}
717
717
run: |
@@ -2288,7 +2288,7 @@ jobs:
2288
2288
# This only sets the conventional commit prefix. This workflow can't reliably determine
2289
2289
# what the breaking change is though. If a BREAKING CHANGE message is required then
2290
2290
# this PR check will fail and the commit will be amended with stafftools
2291
- if [[ "\${{ steps.dependabot- metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
2291
+ if [[ "\${{ steps.metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
2292
2292
prefix='feat!'
2293
2293
else
2294
2294
prefix='chore!'
@@ -2312,7 +2312,7 @@ jobs:
2312
2312
# and attempt to commit and push again. This is helpful because we will have a commit
2313
2313
# with the correct prefix that we can then --amend with @npmcli/stafftools later.
2314
2314
- name: Push All Changes Except Workflows
2315
- if: steps.apply.outputs.changes && steps.push-all .outcome == 'failure'
2315
+ if: steps.apply.outputs.changes && steps.push.outcome == 'failure'
2316
2316
env:
2317
2317
GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }}
2318
2318
run: |
@@ -3684,7 +3684,7 @@ jobs:
3684
3684
# This only sets the conventional commit prefix. This workflow can't reliably determine
3685
3685
# what the breaking change is though. If a BREAKING CHANGE message is required then
3686
3686
# this PR check will fail and the commit will be amended with stafftools
3687
- if [[ "\${{ steps.dependabot- metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
3687
+ if [[ "\${{ steps.metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
3688
3688
prefix='feat!'
3689
3689
else
3690
3690
prefix='chore!'
@@ -3708,7 +3708,7 @@ jobs:
3708
3708
# and attempt to commit and push again. This is helpful because we will have a commit
3709
3709
# with the correct prefix that we can then --amend with @npmcli/stafftools later.
3710
3710
- name: Push All Changes Except Workflows
3711
- if: steps.apply.outputs.changes && steps.push-all .outcome == 'failure'
3711
+ if: steps.apply.outputs.changes && steps.push.outcome == 'failure'
3712
3712
env:
3713
3713
GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }}
3714
3714
run: |
0 commit comments