You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,22 @@ Tool to make sure your commits are compliant with [conventional commits](https:/
14
14
15
15
Commitsar is shipped as a Dockerfile. This is the easiest way to add it to your CI.
16
16
17
-
**Important: Commitsar currently needs to be in the same folder as the git repository you want checked**
17
+
**Important: Commitsar currently needs to be run in the same folder as the git repository you want checked, currently no override is provided for setting path to git repo see https://github.com/commitsar-app/commitsar/issues/93**
18
+
19
+
#### Github action
20
+
21
+
Checkout git in order to get commits and master branch
22
+
```
23
+
- name: Check out code into the Go module directory
24
+
uses: actions/checkout@v1
25
+
```
26
+
27
+
Run the Commitsar action
28
+
```
29
+
- name: Commitsar Action
30
+
uses: commitsar-app/commitsar@v0.6.3 (substitute for current version)
Copy file name to clipboardExpand all lines: www/content/index.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,23 @@ Tool to make sure your commits are compliant with [conventional commits](https:/
11
11
12
12
Commitsar is shipped as a Dockerfile. This is the easiest way to add it to your CI.
13
13
14
-
**Important: Commitsar currently needs to be in the same folder as the git repository you want checked**
14
+
**Important: Commitsar currently needs to be run in the same folder as the git repository you want checked, currently no override is provided for setting path to git repo see https://github.com/commitsar-app/commitsar/issues/93**
15
+
16
+
#### Github action
17
+
18
+
> Github actions
19
+
20
+
Checkout git in order to get commits and master branch
21
+
```
22
+
- name: Check out code into the Go module directory
23
+
uses: actions/checkout@v1
24
+
```
25
+
26
+
Run the Commitsar action
27
+
```
28
+
- name: Commitsar Action
29
+
uses: commitsar-app/commitsar@v0.6.3 (substitute for current version)
0 commit comments