diff options
| author | Mukund Lakshman <yaymukund@gmail.com> | 2021-07-29 18:00:13 +0100 |
|---|---|---|
| committer | Mukund Lakshman <yaymukund@gmail.com> | 2021-08-19 22:49:52 +0100 |
| commit | 700b64e100b79fc2d7c1fdf9b2c97b3fcbdab092 (patch) | |
| tree | 49c1be5619577eb79725e6ae4f70561a61511dad /.github/workflows | |
| parent | 2451f42c1deb9379d5e8e5fa86b0bf857ae048ec (diff) | |
| download | rust-700b64e100b79fc2d7c1fdf9b2c97b3fcbdab092.tar.gz rust-700b64e100b79fc2d7c1fdf9b2c97b3fcbdab092.zip | |
CI: Verify commits in beta & stable are in upstream branches.
Closes #74721
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a07342ee96c..ff4fa1527e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,6 +128,9 @@ jobs: - name: ensure line endings are correct run: src/ci/scripts/verify-line-endings.sh if: success() && !env.SKIP_JOB + - name: ensure backported commits are in upstream branches + run: src/ci/scripts/verify-backported-commits.sh + if: success() && !env.SKIP_JOB - name: run the build run: src/ci/scripts/run-build-from-ci.sh env: @@ -499,6 +502,9 @@ jobs: - name: ensure line endings are correct run: src/ci/scripts/verify-line-endings.sh if: success() && !env.SKIP_JOB + - name: ensure backported commits are in upstream branches + run: src/ci/scripts/verify-backported-commits.sh + if: success() && !env.SKIP_JOB - name: run the build run: src/ci/scripts/run-build-from-ci.sh env: @@ -609,6 +615,9 @@ jobs: - name: ensure line endings are correct run: src/ci/scripts/verify-line-endings.sh if: success() && !env.SKIP_JOB + - name: ensure backported commits are in upstream branches + run: src/ci/scripts/verify-backported-commits.sh + if: success() && !env.SKIP_JOB - name: run the build run: src/ci/scripts/run-build-from-ci.sh env: |
