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 1795292 commit d2c8956Copy full SHA for d2c8956
.github/workflows/check-for-issue.yml renamed to .github/workflows/process-new-blog.yml
@@ -26,6 +26,17 @@ jobs:
26
else
27
echo "is_new_blog=false" >> $GITHUB_OUTPUT
28
fi
29
+
30
+ - name: Add blog process comment
31
+ if: steps.check-new-blog.outputs.is_new_blog == 'true'
32
+ uses: peter-evans/create-or-update-comment@v3
33
+ with:
34
+ token: ${{ secrets.GITHUB_TOKEN }}
35
+ issue-number: ${{ github.event.pull_request.number }}
36
+ body: |
37
+ Thank you for submitting a blog!
38
39
+ The blog process is Submit a PR -> (Optional) Peer review -> Doc review -> Editorial review -> Marketing review -> Published.
40
41
- name: Check for linked issues
42
if: steps.check-new-blog.outputs.is_new_blog == 'true'
0 commit comments