We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e41831 commit 9b62710Copy full SHA for 9b62710
.github/workflows/dependabot-automerge.yml
@@ -45,6 +45,16 @@ jobs:
45
uses: ./.github/workflows/pull-from-bazel-build.yml
46
secrets: inherit
47
48
+ approve-pr:
49
+ needs: [check-dependabot, generate-docs]
50
+ if: needs.check-dependabot.outputs.should_process == 'true'
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Approve pull request
54
+ run: gh pr review --approve "${{ github.event.pull_request.html_url }}"
55
+ env:
56
+ GH_TOKEN: ${{ secrets.GH_AUTOMERGE_PAT }}
57
+
58
# Auto-merge after docs are generated
59
enable-automerge:
60
needs: [check-dependabot, generate-docs]
0 commit comments