mirror of
https://github.com/transmission/transmission
synced 2025-03-04 18:48:06 +00:00
fix: Prevent lengthy compilation workflows to run needlessly (#4804)
This commit is contained in:
parent
39acf93f1a
commit
065facc07c
2 changed files with 12 additions and 0 deletions
6
.github/workflows/codeql.yml
vendored
6
.github/workflows/codeql.yml
vendored
|
@ -3,8 +3,14 @@ name: "CodeQL"
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '29 14 * * 1'
|
- cron: '29 14 * * 1'
|
||||||
|
|
||||||
|
|
6
.github/workflows/webapp.yml
vendored
6
.github/workflows/webapp.yml
vendored
|
@ -3,9 +3,15 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'main'
|
- 'main'
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- 'main'
|
- 'main'
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
jobs:
|
jobs:
|
||||||
decide-what-jobs-to-run:
|
decide-what-jobs-to-run:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
Loading…
Add table
Reference in a new issue