forked from asyncapi/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
name: Notify Docs-triagers | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
Notify-triagers: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check PR Changes | ||
id: pr-changes | ||
run: echo "::set-output name=changes::${{ toJson(github.event.pull_request.changed_files) }}" | ||
- name: Check PR Changes | ||
id: pr-changes | ||
run: | | ||
md_files=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '\.md$' || true) | ||
echo "::set-output name=md_changes::${md_files}" | ||
- name: Create Comment | ||
if: steps.pr-changes.outputs.changes != '[]' | ||
uses: mshick/[email protected] | ||
with: | ||
message: "This is a test comment to check workflow" | ||
repo-token: ${{secrets.GH_TOKEN}} | ||
- name: Create Comment | ||
if: steps.pr-changes.outputs.md_changes != '' | ||
uses: mshick/[email protected] | ||
with: | ||
message: "This is a test comment to check workflow for changes to Markdown files." | ||
repo-token: ${{ secrets.GH_TOKEN }} |