Skip to content

Commit

Permalink
Merge pull request #8075 from jrjohnson/automerge-with-good-test
Browse files Browse the repository at this point in the history
Fix Test in Automerge
  • Loading branch information
stopfstedt committed Aug 16, 2024
2 parents 695e722 + 77fa7d1 commit 35f110a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo ${{ env.isSafe }}
echo ${{ env.isNotMajor }}
- id: should_merge
run: (test -z ${{env.isSafe}} && test -z ${{env.isNotMajor}}) && echo "shouldMerge=yes" >> "$GITHUB_OUTPUT"
run: (test -n ${{env.isSafe}} && test -n ${{env.isNotMajor}}) && echo "shouldMerge=yes" >> "$GITHUB_OUTPUT"
auto_merge:
runs-on: ubuntu-latest
needs: check
Expand Down

0 comments on commit 35f110a

Please sign in to comment.