mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-04-29 01:56:24 +00:00
Enable CI workflow on PRs to feat/ fix/ and janitor/ (#1471)
This will enable for PRs that we create to other branches.
This commit is contained in:
parent
307173487a
commit
acc0e9a80a
.github/workflows
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@ -2,9 +2,16 @@ name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master", "patch"]
|
||||
branches:
|
||||
- master
|
||||
- patch
|
||||
pull_request:
|
||||
branches: ["master", "patch"]
|
||||
branches:
|
||||
- master
|
||||
- patch
|
||||
- 'feat/**'
|
||||
- 'fix/**'
|
||||
- 'janitor/**'
|
||||
workflow_dispatch: # to allow manual re-runs
|
||||
|
||||
env:
|
||||
|
11
.github/workflows/codeql-analysis.yml
vendored
11
.github/workflows/codeql-analysis.yml
vendored
@ -2,9 +2,16 @@ name: "CodeQL checks"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "patch" ]
|
||||
branches:
|
||||
- master
|
||||
- patch
|
||||
pull_request:
|
||||
branches: [ master, "patch" ]
|
||||
branches:
|
||||
- master
|
||||
- patch
|
||||
- 'feat/**'
|
||||
- 'fix/**'
|
||||
- 'janitor/**'
|
||||
schedule:
|
||||
- cron: '44 17 * * 3'
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user