1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

Changes in docs no longer trigger GitHub actions

This commit is contained in:
Daniel Mach 2022-08-22 09:57:38 +02:00
parent 4dae53fbe7
commit 4a88229a1a
2 changed files with 20 additions and 0 deletions

View File

@ -3,8 +3,20 @@ name: 'rpmbuild test'
on:
push:
branches: ['master']
paths-ignore:
- 'AUTHORS'
- 'COPYING'
- 'NEWS'
- 'README.md'
- 'doc/**'
pull_request:
branches: ['master']
paths-ignore:
- 'AUTHORS'
- 'COPYING'
- 'NEWS'
- 'README.md'
- 'doc/**'
jobs:
test:

View File

@ -3,8 +3,16 @@ name: 'unit tests'
on:
push:
branches: ['master']
paths:
- '.github/**'
- '**.py'
- 'tests/**'
pull_request:
branches: ['master']
paths:
- '.github/**'
- '**.py'
- 'tests/**'
jobs:
test: