From 416b7e7d25e7a399f55818f0284fb38e79e0aafd Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Tue, 24 Aug 2021 17:02:52 -0700 Subject: [PATCH 1/4] [ci] update wait-on-check version and set verbose to false --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6753e5a2add..d506f129b7a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,13 +30,14 @@ jobs: # # This workflow should be the last to run. So wait for all the other tests to succeed. - name: Wait on all tests - uses: lewagon/wait-on-check-action@1b1630e169116b58a4b933d5ad7effc46d3d312d + uses: lewagon/wait-on-check-action@0179dfc359f90a703c41240506f998ee1603f9ea with: ref: ${{ github.sha }} running-workflow-name: 'release' repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 180 # seconds allowed-conclusions: success + verbose: false - name: run release run: | From 32001b3cb05ffaf03d6c86766cee38718e84f633 Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Tue, 24 Aug 2021 17:07:48 -0700 Subject: [PATCH 2/4] add comments --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d506f129b7a5..d3418683fde2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: run: dart pub get working-directory: ${{ github.workspace }}/script/tool - # # This workflow should be the last to run. So wait for all the other tests to succeed. + # This workflow should be the last to run. So wait for all the other tests to succeed. - name: Wait on all tests uses: lewagon/wait-on-check-action@0179dfc359f90a703c41240506f998ee1603f9ea with: @@ -37,6 +37,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 180 # seconds allowed-conclusions: success + # verbose:true will produce too many logs that hang github actions web UI. verbose: false - name: run release From 88b639ee81a910e54ecd3124e9a4df1338802a9e Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Thu, 26 Aug 2021 13:47:24 -0700 Subject: [PATCH 3/4] rerun ci From 6dd92e399d4facb730597d56fdfd930fc974115d Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Fri, 27 Aug 2021 11:44:58 -0700 Subject: [PATCH 4/4] fix wrong hash --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d3418683fde2..7f1a4a360949 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: # This workflow should be the last to run. So wait for all the other tests to succeed. - name: Wait on all tests - uses: lewagon/wait-on-check-action@0179dfc359f90a703c41240506f998ee1603f9ea + uses: lewagon/wait-on-check-action@a0f99ce1e713de216866868c3da4d4183a051cbe with: ref: ${{ github.sha }} running-workflow-name: 'release'