-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14adcc0
commit 78117fa
Showing
2 changed files
with
33 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## PR Title :boom: | ||
|
||
Please title this PR with a summary of the change, along with the JIRA card number. | ||
|
||
Suggested formats: | ||
|
||
1. Fixes/Refs RHINENG-XXX - Title | ||
2. RHINENG-XXX Title | ||
|
||
Feel free to remove this section from PR description once done. | ||
|
||
## Why do we need this change? :thought_balloon: | ||
|
||
Please include the __context of this change__ here. | ||
|
||
## Documentation update? :memo: | ||
|
||
- [ ] Yes | ||
- [ ] No | ||
|
||
## :guardsman: Checklist :dart: | ||
|
||
- [ ] Bugfix | ||
- [ ] New Feature | ||
- [ ] Refactor | ||
- [ ] Unittests Added | ||
- [ ] DRY code | ||
- [ ] Dependency Added | ||
- [ ] DB Migration Added | ||
|
||
## Additional :mega: | ||
|
||
Feel free to add any other relevant details such as __links, notes, screenshots__, here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,24 +3,6 @@ name: Lint | |
on: pull_request | ||
|
||
jobs: | ||
lint-commits: | ||
name: Lint commits | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- run: go mod download | ||
- name: Run commitsar | ||
uses: aevea/[email protected] | ||
lint-code: | ||
name: Lint code | ||
runs-on: ubuntu-latest | ||
|