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 2863dea commit 4ac970cCopy full SHA for 4ac970c
.github/workflows/python-publish.yml
@@ -77,6 +77,14 @@ jobs:
77
labels: automated
78
update-branch: true # ensures the PR is updated if it already exists
79
80
+ # Automatically merge the PR if possible
81
+ - name: Auto-merge PR
82
+ uses: peter-evans/merge-pull-request@v3
83
+ with:
84
+ token: ${{ secrets.REPO_PUSH_TOKEN }}
85
+ pull-request: auto # merges the PR created/updated above
86
+ merge-method: squash # options: squash, merge, rebase
87
+
88
- name: Configure Poetry for PyPI
89
run: |
90
poetry config pypi-token.pypi ${{ secrets.TWINE_API_TOKEN }}
0 commit comments