Merge pull request #2221 from jodh-intel/action-honour-force-skip-ci

CI: Honour force-skip-ci label
This commit is contained in:
Fabiano Fidêncio 2021-07-13 08:25:02 +02:00 committed by GitHub
commit e27080b706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,15 @@
on: ["pull_request"]
on:
pull_request:
types:
- opened
- reopened
- labeled
- unlabeled
name: Static checks
jobs:
test:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]