Skip to content

Commit c45dd20

Browse files
Merge pull request #91 from CodeForPhilly/fixes/gh-workflow-branches
Update branch patterns in GH Actions
2 parents 92eface + fdf1fa6 commit c45dd20

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/dockerpublish.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Docker
22

33
on:
44
push:
5-
# Publish `master` as Docker `latest` image.
6-
branches:
7-
- master
8-
- 'release/**'
9-
105
# Publish `v1.2.3` tags as releases.
116
tags:
127
- v*

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish GitBook to GH Pages
33
on:
44
push:
55
branches:
6-
- 'master'
6+
- 'releases/v1'
77

88

99
jobs:

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ name: Chime Lint and Test
66
on:
77
push:
88
branches:
9-
- master
10-
- 'feature/**'
11-
- 'release/**'
9+
- '**'
1210
pull_request:
1311
branches:
14-
- master
12+
- develop
13+
- 'releases/**'
1514

1615
jobs:
1716
build:

0 commit comments

Comments
 (0)