Merge branch 'asyncapi:master' into master #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: @VaishnaviNandakumar" | |
repo-token: ${{ github.token }} |