-
-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (32 loc) · 1.03 KB
/
create_pr_main_to_develop.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
name: create_pr_main_to_develop
on:
push:
branches:
- main
jobs:
create_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout main branch
uses: actions/checkout@v4
with:
ref: main
- name: Set current datetime as env variable
env:
TZ: 'Asia/Tokyo'
run: echo "CURRENT_DATETIME=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
- name: Create Branch
run: git checkout -b merge/gha_${{ env.CURRENT_DATETIME }}
- name: Push Branch
run: git push origin merge/gha_${{ env.CURRENT_DATETIME }}
- name: Install Hub
run: |
sudo apt-get update
sudo apt-get install -y hub
- name: Create Pull Request
env:
REVIEWERS: 'tokku5552'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: merge/gha_${{ env.CURRENT_DATETIME }}
run: |
hub pull-request -m "[bot(create_pr_main_to_develop)]: created at ${{ env.CURRENT_DATETIME }}" -b develop -h $BRANCH_NAME -r "$REVIEWERS"