Skip to content

Commit

Permalink
Add comments explaning job requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
azangru committed Oct 9, 2024
1 parent a809e4a commit 7d39b5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Pub:Live:
- if: '$CI_DEPLOY_FREEZE == null && $CI_COMMIT_BRANCH == "main"'
when: manual
needs:
- Test_N_Build
- Test_N_Build # The reason this job has to be in dependencies array is so that the Publish job can recover its BUILD_JOB_ID
- Pub:Staging


Expand Down Expand Up @@ -294,7 +294,7 @@ Pub::LiveFallback:
- if: '$CI_DEPLOY_FREEZE == null && $CI_COMMIT_BRANCH == "main"'
when: manual
needs:
- Test_N_Build
- Test_N_Build # The reason this job has to be in dependencies array is so that the Publish job can recover its BUILD_JOB_ID
- Pub:Staging


Expand Down Expand Up @@ -327,7 +327,7 @@ Pub:Staging:
rules:
- if: $CI_COMMIT_BRANCH == "main"
needs:
- Test_N_Build
- Test_N_Build # The reason this job has to be in dependencies array is so that the Publish job can recover its BUILD_JOB_ID
- Node:Live


Expand Down Expand Up @@ -363,7 +363,7 @@ Pub:Dev:
rules:
- if: '$CI_DEPLOY_FREEZE == null && $CI_COMMIT_BRANCH == "main"'
needs:
- Test_N_Build
- Test_N_Build # The reason this job has to be in dependencies array is so that the Publish job can recover its BUILD_JOB_ID
- Node:Live


Expand Down

0 comments on commit 7d39b5f

Please sign in to comment.