From 805e344948842439bef32f34f8501ab037929f58 Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Tue, 9 Feb 2021 21:01:20 +0000 Subject: [PATCH] Cancel earlier queued bench workflows --- .github/workflows/bench.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 217bc40d6ca..ec6818a25b5 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -12,6 +12,9 @@ jobs: os: [ubuntu-latest] steps: + # Cancel queued workflows from earlier commits in this branch + - uses: fkirc/skip-duplicate-actions@master + - uses: actions/checkout@v2 - run: git fetch origin master # check the master branch for benchmarking - uses: haskell/actions/setup@v1 @@ -81,6 +84,9 @@ jobs: example: ['Cabal-3.0.0.0', 'lsp-types-1.0.0.1'] steps: + # Cancel queued workflows from earlier commits in this branch + - uses: fkirc/skip-duplicate-actions@master + - uses: haskell/actions/setup@v1 with: ghc-version: ${{ matrix.ghc }}