We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17f8ec5 commit ade7272Copy full SHA for ade7272
1 file changed
.github/workflows/first-responder-v2-prs-collect.yml
@@ -69,7 +69,7 @@ jobs:
69
- name: Check if PR is connected to DIY docs issue
70
id: check-diy-docs
71
env:
72
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
73
run: |
74
ISSUE_NUMS=$(echo "${{ github.event.pull_request.body }}" | grep -oE '(https://github.com/github/docs-content/issues/[0-9]+|#[0-9]+)' | grep -oE '[0-9]+')
75
for ISSUE_NUM in $ISSUE_NUMS; do
@@ -83,7 +83,7 @@ jobs:
83
- name: Add the DIY docs label if connected to a DIY docs issue
84
if: ${{ env.DIY_DOCS_LABEL == 'true' }}
85
86
87
PR_URL: ${{ github.event.pull_request.html_url }}
88
89
gh pr edit $PR_URL --add-label 'DIY docs'
0 commit comments