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 346b0ae commit c8183ddCopy full SHA for c8183dd
.github/workflows/recurring-sort.yml
@@ -32,6 +32,7 @@ jobs:
32
git diff --exit-code || echo "changes=true" >> $GITHUB_OUTPUT
33
34
- name: Create Pull Request
35
+ id: create_pr
36
if: steps.git-check.outputs.changes == 'true'
37
uses: peter-evans/create-pull-request@v5
38
with:
@@ -43,3 +44,9 @@ jobs:
43
44
This PR was automatically generated by the Update workflow.
45
branch: automated/sort-conferences
46
delete-branch: true
47
+
48
+ - name: Auto merge
49
+ if: steps.create_pr.outputs.pull-request-operation == 'created'
50
+ run: gh pr merge --merge --auto "${{ steps.create_pr.outputs.pull-request-number }}"
51
+ env:
52
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments