Skip to content

Commit 0ebc90e

Browse files
committed
Run GitHub Actions workflows on support branches
1 parent 66dc84a commit 0ebc90e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: docker
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main, support/*]
66
tags: ["*"]
77
pull_request:
8-
branches: [master]
8+
branches: [main, support/*]
99

1010
jobs:
1111
docker:
@@ -18,4 +18,4 @@ jobs:
1818
- name: docker build
1919
run: docker build -t json-ld.net .
2020
- name: docker test
21-
run: docker run --rm json-ld.net dotnet test
21+
run: docker run --rm json-ld.net dotnet test

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: dotnet
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, support/*]
66
tags: ["*"]
77
pull_request:
8-
branches: [main]
8+
branches: [main, support/*]
99

1010
jobs:
1111
build:

0 commit comments

Comments
 (0)