From 84004a71a96bab892f9a643e6dba054954f1a6bf Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Thu, 24 Aug 2023 22:51:28 +1000 Subject: [PATCH] ci: Speedup `release.yml` by removing job `test` (#1325) Since the merge_queue requires every PR to be tested, there is no need to run the test again in `release.yml`. Signed-off-by: Jiahao XU --- .github/workflows/release.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 03e859e5..8b97fbe6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,18 +22,9 @@ jobs: event-data: ${{ toJSON(github.event) }} extract-notes-under: '### Release notes' - test: - if: needs.info.outputs.is-release == 'true' - needs: info - uses: ./.github/workflows/ci.yml - with: - additional_key: ${{ github.run_id }} - tag: if: needs.info.outputs.is-release == 'true' - needs: - - info - - test + needs: info runs-on: ubuntu-latest steps: - uses: actions/checkout@v3