File tree Expand file tree Collapse file tree 5 files changed +63
-0
lines changed Expand file tree Collapse file tree 5 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ commitizen :
3
+ customize :
4
+ change_type_map :
5
+ feature : Features
6
+ fix : Fixes
7
+ refactor : Refactoring
8
+ test : Tests
9
+ change_type_order :
10
+ - BREAKING CHANGE
11
+ - feat
12
+ - fix
13
+ - test
14
+ - refactor
15
+ commit_parser : ^(?P<change_type>feat|fix|test|refactor|perf|BREAKING CHANGE)(?:\((?P<scope>[^()\r\n]*)\)|\()?(?P<breaking>!)?:\s(?P<message>.*)?
16
+ name : cz_customize
17
+ prerelease_offset : 1
18
+ tag_format : $version
19
+ update_changelog_on_bump : false
20
+ version : 0.0.1
21
+ version_scheme : semver
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ name : ' CI'
4
+
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - ' **'
10
+ tags :
11
+ - ' *'
12
+
13
+ jobs :
14
+
15
+
16
+ docker :
17
+ name : ' Docker'
18
+ uses : nofusscomputing/action_docker/.github/workflows/docker.yaml@development
19
+ with :
20
+ DOCKER_BUILD_IMAGE_NAME : " nofusscomputing/git-event-problem-matcher"
21
+ DOCKER_PUBLISH_REGISTRY : " docker.io"
22
+ DOCKER_PUBLISH_IMAGE_NAME : " nofusscomputing/git-event-problem-matcher"
23
+ secrets :
24
+ DOCKER_PUBLISH_USERNAME : ${{ secrets.NFC_DOCKERHUB_USERNAME }}
25
+ DOCKER_PUBLISH_PASSWORD : ${{ secrets.NFC_DOCKERHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ name : Pull Requests
4
+
5
+
6
+ on :
7
+ pull_request : {}
8
+
9
+ jobs :
10
+
11
+ ci-test :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+
15
+ - name : Test
16
+ run : |
17
+ echo "github";
You can’t perform that action at this time.
0 commit comments