Skip to content

Commit

Permalink
Update branch ref in initial release trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
philnewm committed Nov 28, 2024
1 parent f6bee40 commit 9109baa
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/initial_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ on:
required: true

env:
LABEL_DELIMITTER: ", "
GH_TOKEN: ${{ secrets.token || secrets.YNPUT_BOT_TOKEN}}
GH_USER: ${{ secrets.user || secrets.CI_USER }}
GH_EMAIL: ${{ secrets.email || secrets.CI_EMAIL }}
Expand All @@ -28,7 +27,7 @@ env:

jobs:
verify-latest-release:
uses: ynput/ops-repo-automation/.github/workflows/verify_latest_release.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/verify_latest_release.yml@main
with:
repo: ${{ github.repository }}
expect_release: false
Expand All @@ -37,7 +36,7 @@ jobs:


verify-repo-secrets:
uses: ynput/ops-repo-automation/.github/workflows/verify_secrets.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/verify_secrets.yml@main
with:
repo: ${{ github.repository }}
secrets:
Expand All @@ -47,7 +46,7 @@ jobs:


verify-repo-vars:
uses: ynput/ops-repo-automation/.github/workflows/verify_variables.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/verify_variables.yml@main
with:
variables: "MAIN_BRANCH,MINOR_BUMP_LABEL,PATCH_BUMP_LABEL,PROJECT_NAME"
repo: ${{ github.repository }}
Expand All @@ -61,7 +60,7 @@ jobs:
- verify-repo-secrets
- verify-repo-vars

uses: ynput/ops-repo-automation/.github/workflows/merge_branch.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/merge_branch.yml@main
with:
repo: ${{ github.repository }}
checkout_branch: ${{ vars.MAIN_BRANCH }}
Expand All @@ -76,7 +75,7 @@ jobs:
needs:
- merge-to-main

uses: ynput/ops-repo-automation/.github/workflows/build_from_branch.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/build_from_branch.yml@main
with:
repo: ${{ github.repository }}
branch_name: ${{ vars.MAIN_BRANCH }}
Expand All @@ -93,7 +92,7 @@ jobs:
needs:
- build-from-main

uses: ynput/ops-repo-automation/.github/workflows/update_branch.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/update_branch.yml@main
with:
repo: ${{ github.repository }}
checkout_branch: ${{ github.ref_name }}
Expand Down Expand Up @@ -130,7 +129,7 @@ jobs:
needs:
- create-release

uses: ynput/ops-repo-automation/.github/workflows/verify_created_release.yml@refactor-release-workflow-structure
uses: ynput/ops-repo-automation/.github/workflows/verify_created_release.yml@main
with:
repo: ${{ github.repository }}
expected_release_name: "${{ inputs.release_overwrite }}"
Expand Down

0 comments on commit 9109baa

Please sign in to comment.