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 #12 from tshion/feature/#6_brush_message
Browse files Browse the repository at this point in the history
#6 文言の調整
  • Loading branch information
tshion authored Feb 24, 2024
2 parents e4669ee + da06930 commit 4ae27f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-app-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ruby scripts/set-version.rb ${{ inputs.versionMajor }} ${{ inputs.versionMinor }} ${{ inputs.versionPatch }}
echo "$(ruby scripts/pick-version-name.rb)" > TMP_LOG
echo "branch-name=feature/update_$(cat TMP_LOG)" >> "$GITHUB_OUTPUT"
echo "version-name=$(cat TMP_LOG)" >> "$GITHUB_OUTPUT"
echo "message=アプリバージョン更新: $(cat TMP_LOG)" >> "$GITHUB_OUTPUT"
- name: Setup git settings
run: |
Expand All @@ -46,10 +46,10 @@ jobs:
run: |
git switch -c ${{ steps.app-version.outputs.branch-name }}
git add Build.xcconfig
git commit -m "Update ${{ steps.app-version.outputs.version-name }}"
git commit -m "${{ steps.app-version.outputs.message }}"
git push --set-upstream origin ${{ steps.app-version.outputs.branch-name }}
- name: Create pull request
run: 'gh pr create --title "アプリバージョン更新: ${{ steps.app-version.outputs.version-name }}" --body ""'
run: gh pr create --title "${{ steps.app-version.outputs.message }}" --body ""
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 4ae27f9

Please sign in to comment.