Skip to content

Commit

Permalink
add workflow to notify docs triagers
Browse files Browse the repository at this point in the history
  • Loading branch information
TRohit20 committed Feb 16, 2024
1 parent 1523451 commit 6356c83
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/notify-docs-triager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Notify Docs-triagers

on:
pull_request:
push:
branches:
- master

jobs:
Notify-triagers:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]

- name: Check PR Changes
id: pr-changes
uses: tj-actions/changed-files@v42
with:
files: |
**.md
- name: Create Comment
if: steps.pr-changes.outputs.any_changed == 'true'
uses: mshick/[email protected]
with:
message: "The PR contains modifications to `.md` files, hence tagging Docs triagers for review and approval.
cc: @alequetzalli @TRohit20 @octonawish-akcodes @BhaswatiRoy @VaishnaviNandakumar @Arya-Gupta @J0SAL"
repo-token: ${{ secrets.GH_TOKEN }}

0 comments on commit 6356c83

Please sign in to comment.