1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-06 15:43:39 +02:00

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

Changes in docs no longer trigger GitHub actions
This commit is contained in:
2022-08-22 10:34:26 +02:00
committed by GitHub
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: