We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a50265f commit 276e281Copy full SHA for 276e281
1 file changed
.github/workflows/verifyChangelogV3.yaml
@@ -114,3 +114,19 @@ jobs:
114
115
core.setFailed("CHANGELOG.md must be updated.");
116
}
117
+
118
+ auto-merge-ignore:
119
+ needs: analyze-pr
120
+ runs-on: ubuntu-latest
121
+ if: needs.analyze-pr.outputs.onlyIgnored == 'true' && github.event_name == 'pull_request'
122
123
+ steps:
124
+ - name: Auto approve PR
125
+ run: gh pr review ${{ github.event.pull_request.number }} --approve
126
+ env:
127
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128
129
+ - name: Enable auto merge
130
+ run: gh pr merge ${{ github.event.pull_request.number }} --auto --merge
131
132
0 commit comments