Skip to content

Commit 1e0af43

Browse files
committed
add RTR job
1 parent a4ae291 commit 1e0af43

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,3 +921,14 @@ jobs:
921921
with:
922922
name: ${{ steps.process.outputs.artifactName }}
923923
path: ${{ steps.process.outputs.artifactPath }}
924+
925+
job_ready_to_release:
926+
name: Ready to release
927+
needs: [job_required_tests, job_artifacts, job_size_check, job_lint, job_circular_dep_check]
928+
if: needs.job_get_metadata.outputs.is_release == 'true'
929+
runs-on: ubuntu-20.04
930+
steps:
931+
- name: Check for failures
932+
if: contains(needs.*.result, 'failure')
933+
run: |
934+
echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)