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

Commit

Permalink
split creation and change (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
yarnabrina authored Apr 6, 2024
1 parent 8850fd9 commit 58497ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ jobs:
shell: bash
- id: branch-step-identifier
name: create new branch
run: git switch --create bump-package-version
run: git branch bump-branch-name
shell: bash
- id: bump-step-identifier
name: bump package version
env:
GIT_AUTHOR_NAME: ${{ secrets.GIT_USER_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
run: bump-my-version bump ${{ inputs.semantic-version-identifier }}
run: git switch bump-branch-name && bump-my-version bump ${{ inputs.semantic-version-identifier }}
shell: bash
- id: pull-request-step-identifier
name: create new pull-request
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr create --base main --fill --head bump-package-version --label maintenance --label bump-package
run: gh pr create --base main --fill --head bump-branch-name --label maintenance --label bump-package
shell: bash

0 comments on commit 58497ca

Please sign in to comment.