Skip to content

Commit

Permalink
Fix param names and matrix failing
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPGreen authored Nov 14, 2024
1 parent c401260 commit 59a33d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backport-starting-v511.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
jobs:
backport:
strategy:
fail-fast: true
fail-fast: false
matrix:
branch: ['v/5.11','v/5.12','v/5.13','v/5.14']
uses: hazelcast/hz-docs/.github/workflows/backport-workflow.yml@main
with:
label: '["backport starting from 5.11"]'
label-to-check-for: '["backport starting from 5.11"]'
target-branch: v/${{ matrix.branch }}
secrets: inherit
8 changes: 4 additions & 4 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:
backport-to-all-branch:
needs: get-maintenance-branches
strategy:
fail-fast: true
fail-fast: false
matrix:
branch: ${{ fromJSON(needs.get-maintenance-branches.outputs.branches) }}
uses: hazelcast/hz-docs/.github/workflows/backport-workflow.yml@main
with:
label: '["backport to all versions"]'
label-to-check-for: '["backport to all versions"]'
target-branch: v/${{ matrix.branch }}
secrets: inherit

backport-to-specified-branch:
needs: get-maintenance-branches
strategy:
fail-fast: true
fail-fast: false
matrix:
branch: ${{ fromJSON(needs.get-maintenance-branches.outputs.branches) }}
uses: hazelcast/hz-docs/.github/workflows/backport-workflow.yml@main
with:
label: '["backport to ${{ matrix.branch }}"]'
label-to-check-for: '["backport to ${{ matrix.branch }}"]'
target-branch: v/${{ matrix.branch }}
secrets: inherit

0 comments on commit 59a33d3

Please sign in to comment.