We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 904b236 commit d086d51Copy full SHA for d086d51
1 file changed
.github/workflows/docs-slack.yml
@@ -0,0 +1,13 @@
1
+name: Docs Slack Notify
2
+
3
+on:
4
+ pull_request:
5
+ types: [review_requested]
6
7
+jobs:
8
+ send:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Notify docs-prs
12
+ if: github.event.requested_team.slug == 'docs-prs'
13
+ run: curl -X POST ${{ secrets.SLACK_DOC_REVIEW_WEBHOOK_URL }} -H 'Content-Type:application/json' -d '{"pr_title":"${{ github.event.pull_request.title }}","pr_url":"${{ github.event.pull_request.html_url }}","pr_author":"${{ github.event.pull_request.user.login }}","pr_number":"${{ github.event.pull_request.number }}","lines_changed":"${{ github.event.pull_request.additions }}"}'
0 commit comments