-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from smutel/AddConventionalCheck
ci: Add conventional check in CI
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 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,26 @@ | ||
--- | ||
name: New feature | ||
about: Need a new feature not yet implemented | ||
title: "[Main title for your issue here]" | ||
labels: enhancement | ||
assignees: smutel | ||
--- | ||
<!--- Verify first that this feature is not already implemented in the master branch --> | ||
<!--- Complete most of sections below as described --> | ||
|
||
## Summary | ||
<!--- Describe here with one sentence what the new feature or the enhancement is --> | ||
|
||
## Example | ||
|
||
### Usage | ||
<!--- Describe here a use case for this new feature/enhancement --> | ||
|
||
### Terraform code | ||
<!--- Put here the terraform code to use this new feature --> | ||
```hcl | ||
``` | ||
|
||
### Tasks executed by this terraform code | ||
<!--- Explain here what actions are done by this new feature when executing this code --> |
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,18 @@ | ||
# Set to true to add reviewers to pull requests | ||
addReviewers: true | ||
|
||
# Set to true to add assignees to pull requests | ||
addAssignees: true | ||
|
||
# A list of reviewers to be added to pull requests (GitHub user name) | ||
reviewers: | ||
- smutel | ||
|
||
# A list of keywords to be skipped the process that add reviewers if pull requests include it | ||
skipKeywords: | ||
- wip | ||
- draft | ||
|
||
# A number of reviewers added to the pull request | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 0 |
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 |
---|---|---|
|
@@ -15,6 +15,13 @@ jobs: | |
matrix: | ||
go: [ '1.15.x' ] | ||
steps: | ||
- name: Check conventional commits in PR | ||
uses: Namchee/[email protected] | ||
with: | ||
access_token: ${{ secrets.github_token }} | ||
label: "no-conventional-commits" | ||
close: false | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
|