save the dag state using the pruning point as the key and if it is 0,… #13111
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cancel | |
on: | |
push: | |
pull_request: | |
types: [closed] | |
jobs: | |
cancel: | |
name: 'Cancel Previous Runs' | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/cancel-workflow-action@0.3.1 | |
with: | |
# get work flow id by https://api.github.com/repos/starcoinorg/starcoin/actions/workflows | |
# 511061: build_test | |
# 1098916: codecov | |
# 4555449: benchmark_pr | |
workflow_id: 511061,1098916,4555449 | |
ignore_sha: true | |
access_token: ${{ github.token }} |