File: cancel.yml

package info (click to toggle)
node-source-map-loader 4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,500 kB
  • sloc: javascript: 2,040; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 437 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Cancel
on:
  push:
    branches:
      - master
      - next
  pull_request:
    branches:
      - master
      - next
permissions: {} # none
jobs:
  cancel:
    permissions:
      actions: write
    name: Cancel Previous Runs
    runs-on: ubuntu-latest
    timeout-minutes: 3
    steps:
      - uses: styfle/cancel-workflow-action@0.10.0
        with:
          workflow_id: nodejs.yml
          access_token: ${{ github.token }}