Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #26 from tshion/feature/#6_add_option_base_branch
Browse files Browse the repository at this point in the history
#6 PR 作成した際、向け先を実行したブランチにするように修正
  • Loading branch information
tshion authored Apr 12, 2024
2 parents 9bd3761 + 09199fb commit 5b65af4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/update-app-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ on:

jobs:
update-app-version:
if: >-
github.ref_type == 'branch'
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down Expand Up @@ -50,6 +52,6 @@ jobs:
git push --set-upstream origin ${{ steps.app-version.outputs.branch-name }}
- name: Create pull request
run: gh pr create --title "${{ steps.app-version.outputs.message }}" --body ""
run: gh pr create --base ${{ github.ref_name }} --title "${{ steps.app-version.outputs.message }}" --body ""
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 5b65af4

Please sign in to comment.