Skip to content

Commit

Permalink
Merge pull request #8471 from LedgerHQ/support/fix-changesets-ci-ref
Browse files Browse the repository at this point in the history
ci: fix old references to feature branch, re-point to @develop
  • Loading branch information
angusbayley authored Nov 25, 2024
2 parents dff78d3 + a7e9902 commit 2d625a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-create-hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
if: ${{ startsWith(github.ref_name, 'hotfix') }}
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: minor
to_level: patch
- name: Move major updates to patch for hotfix branch
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
if: ${{ startsWith(github.ref_name, 'hotfix') }}
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: major
to_level: patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Move patch updates to minor
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: patch
to_level: minor
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,23 @@ jobs:
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
if: ${{ startsWith(github.ref_name, 'release') }}
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: patch
to_level: minor
- name: Move minor updates to patch for hotfix branch
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
if: ${{ startsWith(github.ref_name, 'hotfix') }}
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: minor
to_level: patch
- name: Move major updates to patch for hotfix branch
# For more info about why we do this, see this doc:
# https://ledgerhq.atlassian.net/wiki/spaces/WALLETCO/pages/4710989838/LL+Incident+Recovery+-+Hotfix+in+all+cases
if: ${{ startsWith(github.ref_name, 'hotfix') }}
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@support/automatic-ci-changeset-control
uses: LedgerHQ/ledger-live/tools/actions/composites/adjust-changeset-level@develop
with:
from_level: major
to_level: patch
Expand Down

0 comments on commit 2d625a7

Please sign in to comment.