Cleanup to address deprecations #29
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: pull-request | |
"on": | |
pull_request_target: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
comment-on-pr: | |
# We only care about commenting on a PR if the PR is from a fork | |
if: github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Comment PR | |
uses: thollander/actions-comment-pull-request@master | |
with: | |
message: | | |
PR is now waiting for a maintainer to run the acceptance tests. This PR will only perform build and linting. | |
**Note for the maintainer:** To run the acceptance tests, please comment */run-acceptance-tests* on the PR | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |