Skip to content

Commit

Permalink
Merge pull request #2497 from demergent-labs/fix_release_process_2477
Browse files Browse the repository at this point in the history
Update prefix name to make it easier to match
  • Loading branch information
lastmjs authored Jan 16, 2025
2 parents 0d6eff5 + e9b38f8 commit 991761d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create_branch_prefix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: bash
run: |
VERSION="${{ inputs.version }}"
echo "branch-prefix=${{ inputs.prefix }}--$VERSION-" >> $GITHUB_OUTPUT
echo "branch-prefix=${{ inputs.prefix }}--$VERSION--" >> $GITHUB_OUTPUT
echo "base-branch=${{ inputs.prefix }}--$VERSION" >> $GITHUB_OUTPUT
- uses: ./.github/actions/configure_git
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/squash_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
CURRENT_BRANCH=$(git branch --show-current)
for branch in ${{ steps.collect-branches.outputs.branches }}; do
echo "Merging $branch into $CURRENT_BRANCH"
git merge --squash $branch
done
Expand Down

0 comments on commit 991761d

Please sign in to comment.