create_release_pr #64
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: create_release_pr | |
on: | |
schedule: | |
- cron: 0 6 * * 3 | |
jobs: | |
create_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout develop branch | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- 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 release/gha_${{ env.CURRENT_DATETIME }} | |
- name: Push Branch | |
run: git push origin release/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: release/gha_${{ env.CURRENT_DATETIME }} | |
run: | | |
hub pull-request -m "[bot(create_release_pr)]: created at ${{ env.CURRENT_DATETIME }}" -b main -h $BRANCH_NAME -r "$REVIEWERS" |