Skip to content

Commit d086d51

Browse files
committed
test: byte-for-byte copy with minimal changes
1 parent 904b236 commit d086d51

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/docs-slack.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)