Skip to content

Commit 726f3aa

Browse files
authored
fix(ci): Remove dev_deploy_test dependency from promote_to_staging job (#2622)
This change allows staging deployments to be manually approved immediately after build completion, without waiting for dev tests to pass. The manual approval gate via environment protection rules remains in place, ensuring controlled promotion to staging.
1 parent cc164ac commit 726f3aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-cd-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
TEST_ACCOUNT_PRIVATE_KEY: ${{ secrets.TEST_ACCOUNT_PRIVATE_KEY }}
4242

4343
promote_to_staging:
44-
needs: [build, dev_deploy_test]
44+
needs: [build]
4545
runs-on: ubuntu-latest
4646
environment:
4747
name: Staging

0 commit comments

Comments
 (0)