You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
442 B
27 lines
442 B
#
|
|
# comment-pr.yml
|
|
# Add a comment to any PR directed to a release branch
|
|
#
|
|
|
|
name: PR Bad Target
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 1.0.x
|
|
- 1.1.x
|
|
- 2.0.x
|
|
|
|
jobs:
|
|
bad_target:
|
|
|
|
name: PR Bad Target
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: harupy/comment-on-pr@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
filename: bad-target.md
|
|
|