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 6aea304 commit 73acee1Copy full SHA for 73acee1
.github/workflows/auto-merge.yml
@@ -1,6 +1,8 @@
1
name: auto-merge
2
3
-on: pull_request
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
7
permissions:
8
contents: write
@@ -17,7 +19,7 @@ jobs:
17
19
github-token: "${{ secrets.GITHUB_TOKEN }}"
18
20
- name: Enable auto-merge for mypy-boto3 stubs Dependabot PRs
21
if: ${{contains(steps.metadata.outputs.dependency-names, 'mypy-boto3')}} # && steps.metadata.outputs.update-type == 'version-update:semver-patch'
- run: gh pr merge --auto --merge "$PR_URL"
22
+ run: gh pr merge --auto --merge --squash "$PR_URL"
23
env:
24
PR_URL: ${{github.event.pull_request.html_url}}
25
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments