Update pr_messages.yml #4
Workflow file for this run
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: Update Contributors | |
on: | |
# Trigger the workflow on push or pull request | |
pull_request: | |
branches: | |
- master | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'If you haven't done so, please update the following files as well:\n- [CONTRIBUTORS.md](https://github.com/R3voA3/3den-Enhanced/blob/master/]|(https://github.com/R3voA3/3den-Enhanced/blob/master/CONTRIBUTORS.md))\n- [CHANGELOG.md](https://github.com/R3voA3/3den-Enhanced/blob/master/CHANGELOG.md)' | |
}) |