File tree Expand file tree Collapse file tree 6 files changed +6724
-0
lines changed Expand file tree Collapse file tree 6 files changed +6724
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Summary of change
2
+
3
+ [ Please briefly describe what you have changed.]
4
+
5
+ ## Related issue
6
+
7
+ Closes #[ issue number]
Original file line number Diff line number Diff line change
1
+ name : Conventional Commits
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - " main"
7
+ - " alpha"
8
+ pull_request :
9
+ branches :
10
+ - " main"
11
+ - " alpha"
12
+
13
+ jobs :
14
+ build :
15
+ name : Conventional Commits
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+
20
+ - uses : gentleseal/action-conventional-commits@master
21
+ with :
22
+ valid-commit-types : >
23
+ [
24
+ "chore",
25
+ "fix",
26
+ "feat",
27
+ "BREAKING CHANGE",
28
+ "docs",
29
+ "refactor",
30
+ "test",
31
+ "ci",
32
+ "revert",
33
+ "merge"
34
+ ]
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - " main"
7
+ - " alpha"
8
+ pull_request :
9
+ branches :
10
+ - " main"
11
+ - " alpha"
12
+
13
+ permissions :
14
+ contents : read # for checkout
15
+
16
+ jobs :
17
+ release :
18
+ name : Release
19
+ runs-on : ubuntu-latest
20
+ permissions :
21
+ contents : write # to be able to publish a GitHub release
22
+ issues : write # to be able to comment on released issues
23
+ pull-requests : write # to be able to comment on released pull requests
24
+ id-token : write # to enable use of OIDC for npm provenance
25
+ steps :
26
+ - uses : actions/checkout@v3
27
+ - uses : actions/setup-node@v3
28
+ - run : npm clean-install
29
+ - run : npx semantic-release --debug
30
+ env :
31
+ GITHUB_TOKEN : ${{ secrets.GH_AUTH_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : dataset-gen
2
+ branches :
3
+ - name : main
4
+ - name : alpha
5
+ prerelease : true
6
+
7
+ plugins :
8
+ - " @semantic-release/commit-analyzer"
9
+ - " @semantic-release/release-notes-generator"
10
+ - " @semantic-release/github"
You can’t perform that action at this time.
0 commit comments