Browse Source

workflow: add ignore paths

pull/300/head
Rossen 5 years ago
committed by GitHub
parent
commit
2229330afc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      .github/workflows/testing_initiative.yml

19
.github/workflows/testing_initiative.yml

@ -6,9 +6,26 @@ name: Testing Initiative
on:
push:
branches: [ master ]
paths-ignore:
- '.gitignore'
- '*.md'
- '*.rst'
- 'LICENSE'
- 'Vagrantfile'
- 'protobuf_list.txt'
- 'protobufs/**'
- 'recipes/**'
pull_request:
branches: [ master ]
paths-ignore:
- '.gitignore'
- '*.md'
- '*.rst'
- 'LICENSE'
- 'Vagrantfile'
- 'protobuf_list.txt'
- 'protobufs/**'
- 'recipes/**'
jobs:
test:
runs-on: ${{ matrix.os }}

Loading…
Cancel
Save