1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 09:46:19 +02:00

Merge pull request #1109 from dmach/doc-no-gha

Changes in docs no longer trigger GitHub actions
This commit is contained in:
Daniel Mach 2022-08-22 10:34:26 +02:00 committed by GitHub
commit d63ee79cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: