Skip to content

Update pr_messages.yml #2

Update pr_messages.yml

Update pr_messages.yml #2

Workflow file for this run

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: 'Please also update the following files if you haven't yet:

Check failure on line 19 in .github/workflows/pr_messages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr_messages.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- [CONTRIBUTORS.md](https://github.com/R3voA3/3den-Enhanced/blob/master/](https://github.com/R3voA3/3den-Enhanced/blob/master/CONTRIBUTORS.md))
- [CHANGELOG.md](https://github.com/R3voA3/3den-Enhanced/blob/master/CHANGELOG.md)'
})