Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
uses: ./.github/workflows/.tests.yml
with:
tag: ${{ github.event.number || 'latest' }}

resume-resources-dev:
name: Resume Resources Dev
if: (github.event_name == 'workflow_dispatch')
Expand All @@ -61,6 +62,7 @@ jobs:
with:
app_env: dev
secrets: inherit

deploy-to-dev:
name: Deploy to Dev
if: (github.event_name == 'workflow_dispatch')
Expand All @@ -75,12 +77,13 @@ jobs:
tag: manual
app_env: dev
secrets: inherit

results:
name: PR Results
concurrency:
group: pr-results-${{ github.event.number || 'latest' }}
cancel-in-progress: true
needs: [builds, plan-stack, tests]
needs: [builds, deploy-to-dev, plan-stack, tests]
if: always()
runs-on: ubuntu-24.04
steps:
Expand Down
Loading