Skip to content

Commit

Permalink
chore(updateVersion): merge ignoring conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
rbioteau committed May 31, 2024
1 parent 75a3d28 commit 78cb09c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/_reusable_update_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
version:
type: string
required: true
merge-upstream-ignoring-conflicts:
type: boolean
default: false
secrets:
KSM_CONFIG:
required: true
Expand Down Expand Up @@ -45,4 +48,12 @@ jobs:
- name: Commit and push
run: |
git commit -a -m "chore(versioning): update version to ${{ inputs.version }}"
git push
git push
merge-upstream:
needs: update-version
if: ${{ inputs.merge-upstream-ignoring-conflicts }}
uses: bonitasoft/github-workflows/.github/workflows/_reusable_merge_upstream.yml@main
with:
ignore-conflicts: true
secrets: inherit

0 comments on commit 78cb09c

Please sign in to comment.