-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 1.35 KB
/
pr-on-branch-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Pull Request on Push to branch
on:
push:
branches-ignore:
- main
- dev
pull_request:
types: [opened]
jobs:
create-pull-request:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: dev
- name: Create PR
run: |
echo "Get the list of PR for that branch that are open"
gh pr list -H ${{ github.ref_name}} -s "open"
PR_COUNT=$(gh pr list -H ${{ github.ref_name}} -s "open" | wc -l)
echo $PR_COUNT
echo "Checking if there are any PR already"
if [[ $PR_COUNT -gt 0 ]]; then
echo "Indeed there is at least one PR for this branch"
else
echo "There is no PR for this branch so we create one"
gh pr create -B $BASE_BRANCH -H $BRANCH_TO_MERGE --title "$PR_TITLE" --body "$PR_BODY"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_TITLE: "Autocreated PR: ${{ github.ref_name}}"
PR_BODY: "Created by Github action"
BASE_BRANCH: "dev"
BRANCH_TO_MERGE: ${{ github.ref}}
- name: Print list of PR
run: gh pr view ${{ github.ref_name}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}