8000 Enable CI workflow on PRs to feat/ fix/ and janitor/ (#1471) · Fulch36/python-kasa@acc0e9a · GitHub
[go: up one dir, main page]

Skip to content

Commit acc0e9a

Browse files
authored
Enable CI workflow on PRs to feat/ fix/ and janitor/ (python-kasa#1471)
This will enable for PRs that we create to other branches.
1 parent 3071734 commit acc0e9a

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@ name: CI
22

33
on:
44
push:
5-
branches: ["master", "patch"]
5+
branches:
6+
- master
7+
- patch
68
pull_request:
7-
branches: ["master", "patch"]
9+
branches:
10+
- master
11+
- patch
12+
- 'feat/**'
13+
- 'fix/**'
14+
- 'janitor/**'
815
workflow_dispatch: # to allow manual re-runs
916

1017
env:

.github/workflows/codeql-analysis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@ name: "CodeQL checks"
22

33
on:
44
push:
5-
branches: [ "master", "patch" ]
5+
branches:
6+
- master
7+
- patch
68
pull_request:
7-
branches: [ master, "patch" ]
9+
branches:
10+
- master
11+
- patch
12+
- 'feat/**'
13+
- 'fix/**'
14+
- 'janitor/**'
815
schedule:
916
- cron: '44 17 * * 3'
1017

0 commit comments

Comments
 (0)
0