Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-label-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:
jobs:
call-check-pr:
name: Check
uses: CruGlobal/.github/.github/workflows/check-pr-release-label.yml@master
uses: CruGlobal/.github/.github/workflows/check-pr-release-label.yml@main
8 changes: 4 additions & 4 deletions .github/workflows/pr-merge-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Label
# Only run if the PR closed by merging and we have a label
if: ${{ github.event.pull_request.merged }}
uses: CruGlobal/.github/.github/workflows/get-pr-release-label.yml@master
uses: CruGlobal/.github/.github/workflows/get-pr-release-label.yml@main
call-e2e-tests:
name: Test
needs: [call-get-label]
Expand All @@ -25,19 +25,19 @@ jobs:
name: Version
# Only run if tests pass
needs: [ call-get-label, call-e2e-tests ]
uses: CruGlobal/.github/.github/workflows/bump-version.yml@master
uses: CruGlobal/.github/.github/workflows/bump-version.yml@main
with:
ref: ${{ github.ref }}
type: ${{ needs.call-get-label.outputs.label }}
call-create-release:
name: Release
uses: CruGlobal/.github/.github/workflows/create-release.yml@master
uses: CruGlobal/.github/.github/workflows/create-release.yml@main
needs: [call-bump-version]
with:
tag: v${{ needs.call-bump-version.outputs.new_version }}
call-dispatch-web-update:
needs: [ call-bump-version, call-get-label ]
uses: CruGlobal/.github/.github/workflows/dispatch-update.yml@master
uses: CruGlobal/.github/.github/workflows/dispatch-update.yml@main
with:
dispatch_repos: '["ab_service_web"]'
dispatch_type: web_new_version
Expand Down
Loading