We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f32209a commit 30b02d5Copy full SHA for 30b02d5
.github/workflows/release.yml
@@ -2,7 +2,7 @@ name: Release
2
3
on:
4
push:
5
- branches: [main]
+ branches: [release]
6
7
jobs:
8
release:
release.config.js
@@ -11,7 +11,7 @@ const types = require('./commit-types.config')
11
/**
12
* GitHubのデフォルトブランチ
13
*/
14
-const defaultBranch = 'main'
+const defaultBranch = 'release'
15
16
17
* changelogを書き出すファイル名
@@ -24,9 +24,7 @@ module.exports = {
24
*
25
* @see https://semantic-release.gitbook.io/semantic-release/usage/workflow-configuration
26
27
- branches: [
28
- defaultBranch,
29
- ],
+ branches: [defaultBranch],
30
31
* Gitタグのフォーマット。Lodashのテンプレートが使えます。
32
* multi-semantic-releaseを使った場合は、この設定は無視されます。
0 commit comments