Auto PR #326
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
# SPDX-License-Identifier: MIT | |
name: Auto PR | |
on: create | |
permissions: | |
contents: write | |
pull-requests: write | |
repository-projects: write | |
jobs: | |
pr: | |
if: github.event.ref_type == 'branch' && ! github.event.repository.fork | |
name: Create PR | |
runs-on: ubuntu-24.04 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PROJECT: "uchikoshi-fes.jp-2022" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup git | |
run: | | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config user.name "github-actions[bot]" | |
git config push.default current | |
- name: Create a pull request | |
run: | | |
ISSUE=`echo "${{ github.event.ref }}" | grep -oE '#[0-9]+'` | |
if ${{ startsWith(github.event.ref, 'hotfix/') }}; then | |
if git diff --quiet origin/main; then | |
git commit --allow-empty -m "empty commit" | |
git push | |
fi | |
gh pr create --draft --base main --assignee ${{ github.event.sender.login }} --title "${{ github.event.ref }}" --body "close $ISSUE" | |
else | |
if git diff --quiet origin/develop; then | |
git commit --allow-empty -m "empty commit" | |
git push | |
fi | |
gh pr create --draft --base develop --assignee ${{ github.event.sender.login }} --title "${{ github.event.ref }}" --body "close $ISSUE" | |
fi |