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
3 changes: 3 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Code Quality
on:
pull_request:
branches: [ mainline, release, 'patch_*' ]
push:
# Run on mainline pushes to populate the Actions cache that PRs restore from.
branches: [ mainline ]
workflow_call:
inputs:
branch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- major

permissions:
id-token: write
contents: write
pull-requests: write

Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
with:
tag: ${{ needs.TagRelease.outputs.tag }}

ManualTestGate:
needs: [TagRelease, BuildInstaller]
runs-on: ubuntu-latest
environment: release-gate
steps:
- run: echo "Manual testing approved for ${{ needs.TagRelease.outputs.tag }}"

PreRelease:
needs: [TagRelease, UnitTests]
uses: aws-deadline/.github/.github/workflows/reusable_prerelease.yml@mainline
Expand Down Expand Up @@ -70,14 +77,14 @@ jobs:
IsCondaReady:
needs: Publish
runs-on: ubuntu-latest
environment: release
environment: release-gate
name: “Is the Conda Package available in all ProdWaves and have you ran any required manual tests?”
steps:
- run: |
:

ReleaseInstaller:
needs: [TagRelease, IsCondaReady]
needs: [TagRelease, IsCondaReady, ManualTestGate]
uses: aws-deadline/.github/.github/workflows/reusable_release_installers.yml@mainline
secrets: inherit
permissions:
Expand Down
Loading