Skip to content

Initalize changelog test workflow #1

Initalize changelog test workflow

Initalize changelog test workflow #1

Workflow file for this run

name: Changelog Check
on:
pull_request:
types:
- opened
- synchronize
jobs:
changelog-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check for CHANGELOG.md update
run: |
if ! grep -q "CHANGELOG.md" ${{ github.event.pull_request.changed_files }}; then
echo "Each PR must include an update to the CHANGELOG.md file."
# Add a comment to the PR
echo "::set-output name=comment::Each PR must include an update to the CHANGELOG.md file."
fi
- name: Comment on PR
uses: actions/github-script@v4
if: steps.changelog-check.outputs.comment
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const comment = core.getInput('comment');
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment
});