Skip to content

Commit 6cdfe4b

Browse files
committed
ci(github-actions): allow for semantic release to run on alpha and beta branches
1 parent 276e96b commit 6cdfe4b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/dependabot.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ version: 2
33
updates:
44
# Maintain dependencies for npm
55
- package-ecosystem: 'npm'
6+
target-branch: 'develop'
67
directory: '/'
78
schedule:
89
interval: 'weekly'
@@ -16,6 +17,7 @@ updates:
1617
open-pull-requests-limit: 20
1718

1819
- package-ecosystem: github-actions
20+
target-branch: 'develop'
1921
directory: '/'
2022
schedule:
2123
interval: 'weekly'

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: 'CodeQL'
1313

1414
on:
1515
push:
16-
branches: [develop, main]
16+
branches: [develop, main, alpha, beta]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [develop]
19+
branches: [develop, alpha, beta]
2020
schedule:
2121
- cron: '23 23 * * 3'
2222

.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches:
77
- main
8+
- alpha
9+
- beta
810

911
jobs:
1012
release:

0 commit comments

Comments
 (0)