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 d10748d commit b7d93e5Copy full SHA for b7d93e5
.github/workflows/llmstxt.yml
@@ -42,10 +42,16 @@ jobs:
42
43
# commit the changes and make a PR (branch protection)
44
- name: Create Pull Request
45
+ id: cpr
46
uses: peter-evans/create-pull-request@v7
47
with:
48
+ token: ${{ secrets.DOCS_PUBLISHABLE_GH_TOKEN }}
49
commit-message: Regenerate LLMs.txt and related files
50
branch: auto-update-llms-txt
51
delete-branch: true
52
title: '🤖 Regenerate LLMs.txt'
53
54
+ - name: Enable Pull Request Automerge
55
+ run: gh pr merge --merge --auto ${{ steps.cpr.outputs.pull-request-number }}
56
+ env:
57
+ GH_TOKEN: ${{ secrets.DOCS_PUBLISHABLE_GH_TOKEN }}
0 commit comments