adjust paths for triggering workflows
This commit is contained in:
parent
378f20bd38
commit
f7ac65a4c3
3 changed files with 60 additions and 5 deletions
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
|
|
@ -2,12 +2,40 @@ name: MILC CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**.py'
|
||||
- ci_tests
|
||||
- example
|
||||
- hello
|
||||
- milc-color
|
||||
- passwd_complexity
|
||||
- passwd_confirm
|
||||
- questions
|
||||
- setup.cfg
|
||||
- sparkline
|
||||
- spinner
|
||||
- spinner_qmk
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**.py'
|
||||
- ci_tests
|
||||
- example
|
||||
- hello
|
||||
- milc-color
|
||||
- passwd_complexity
|
||||
- passwd_confirm
|
||||
- questions
|
||||
- setup.cfg
|
||||
- sparkline
|
||||
- spinner
|
||||
- spinner_qmk
|
||||
|
||||
jobs:
|
||||
build:
|
||||
ci_tests:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
28
.github/workflows/codeql-analysis.yml
vendored
28
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -14,11 +14,35 @@ name: "CodeQL"
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- '**.py'
|
||||
- ci_tests
|
||||
- example
|
||||
- hello
|
||||
- milc-color
|
||||
- passwd_complexity
|
||||
- passwd_confirm
|
||||
- questions
|
||||
- setup.cfg
|
||||
- sparkline
|
||||
- spinner
|
||||
- spinner_qmk
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ master ]
|
||||
schedule:
|
||||
- cron: '31 23 * * 2'
|
||||
paths:
|
||||
- '**.py'
|
||||
- ci_tests
|
||||
- example
|
||||
- hello
|
||||
- milc-color
|
||||
- passwd_complexity
|
||||
- passwd_confirm
|
||||
- questions
|
||||
- setup.cfg
|
||||
- sparkline
|
||||
- spinner
|
||||
- spinner_qmk
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
|
|
|
|||
3
.github/workflows/devel_docs.yml
vendored
3
.github/workflows/devel_docs.yml
vendored
|
|
@ -6,6 +6,9 @@ name: Update Develop Docs
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- 'docs/**'
|
||||
- 'mkdocs.yml'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue