Skip to content

Commit

Permalink
Adding checkout to ensure git env execution
Browse files Browse the repository at this point in the history
  • Loading branch information
TRohit20 committed Feb 16, 2024
1 parent f664294 commit e662363
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/notify-docs-triagers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ jobs:
Notify-triagers:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Check PR Changes
id: pr-changes
run: |
md_files=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '\.md$' || true)
md_files=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} -- '*.md' || true)
echo "::set-output name=md_changes::${md_files}"
- 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 }}
repo-token: ${{ secrets.GH_TOKEN }}

0 comments on commit e662363

Please sign in to comment.