Skip to content

Commit 9640af0

Browse files
authored
Merge pull request #339 from github/rc-workflows
enable actions workflows for rc branches
2 parents 958fbc7 + f870c38 commit 9640af0

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Build / Release
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- 'rc/*'
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
11+
- 'rc/*'
812
workflow_dispatch:
913
inputs:
1014
tag:

.github/workflows/dataset_measure.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@ name: Collect database stats
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- 'rc/*'
68
paths:
79
- ql/lib/ruby.dbscheme
810
pull_request:
9-
branches: [main]
11+
branches:
12+
- main
13+
- 'rc/*'
1014
paths:
1115
- ql/lib/ruby.dbscheme
1216
workflow_dispatch:

.github/workflows/qhelp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Query help preview
22

33
on:
44
pull_request:
5-
branches: [main]
5+
branches:
6+
- main
7+
- 'rc/*'
68
paths:
79
- "**/*.qhelp"
810

.github/workflows/qltest.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Run QL Tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- 'rc/*'
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
11+
- 'rc/*'
812

913
env:
1014
CARGO_TERM_COLOR: always

.github/workflows/sync_files.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Check synchronized files
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- 'rc/*'
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
11+
- 'rc/*'
812

913
jobs:
1014
sync:

0 commit comments

Comments
 (0)