-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflows: Additions for pull requests
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: "Comment if PR goes to wrong branch" | ||
|
||
on: | ||
pull_request: | ||
types: [opened] | ||
branches: | ||
- '*' | ||
- '!develop' | ||
|
||
jobs: | ||
comment_pr: | ||
runs-on: ubuntu-latest | ||
name: Comment on wrong branch | ||
steps: | ||
- name: Comment PR | ||
uses: thollander/actions-comment-pull-request@v1 | ||
with: | ||
message: 'Pull requests should only be placed against the develop branch' | ||
reactions: '-1' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
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