We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707ad04 commit a7f9e73Copy full SHA for a7f9e73
.github/workflows/auto-merge.yml
@@ -2,8 +2,7 @@ name: auto-merge
2
3
on:
4
pull_request:
5
-
6
-# workflow_dispatch:
+ types: [opened, edited, synchronize]
7
8
permissions:
9
contents: write
@@ -20,7 +19,7 @@ jobs:
20
19
github-token: "${{ secrets.GITHUB_TOKEN }}"
21
- name: Enable auto-merge for mypy-boto3 stubs Dependabot PRs
22
if: ${{contains(steps.metadata.outputs.dependency-names, 'mypy-boto3')}} # && steps.metadata.outputs.update-type == 'version-update:semver-patch'
23
- run: gh pr merge --auto --merge --squash "$PR_URL"
+ run: gh pr merge --auto --squash "$PR_URL"
24
env:
25
PR_URL: ${{github.event.pull_request.html_url}}
26
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments