Skip to content

Commit

Permalink
Merge pull request #8206 from jrjohnson/no-x-till-brooklyn
Browse files Browse the repository at this point in the history
Stop Autoupdate Check from Failure
  • Loading branch information
dartajax authored Nov 1, 2024
2 parents fcc6397 + 05e0813 commit 6106fe1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- run: >
npx in-string-list ${{ steps.metadata.outputs.dependency-names }} ${{ env.SAFE_DEPENDENCIES }}
pnpm dlx in-string-list ${{ steps.metadata.outputs.dependency-names }} ${{ env.SAFE_DEPENDENCIES }}
&& echo "isSafe=yes" >> "$GITHUB_ENV"
|| echo "Not marked as safe"
- run: >
test ${{ steps.metadata.outputs.update-type }} != 'version-update:semver-major'
&& echo "isNotMajor=yes" >> "$GITHUB_ENV"
|| echo "This is a major version update"
- run: |
echo ${{ env.isSafe }}
echo ${{ env.isNotMajor }}
Expand Down

0 comments on commit 6106fe1

Please sign in to comment.