Skip to content

Commit

Permalink
Merge pull request #26 from smutel/AddConventionalCheck
Browse files Browse the repository at this point in the history
ci: Add conventional check in CI
  • Loading branch information
smutel authored Dec 12, 2020
2 parents d80f79b + 3ceba43 commit a563b90
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
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 -->
18 changes: 18 additions & 0 deletions .github/auto_assign.yml
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
7 changes: 7 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit a563b90

Please sign in to comment.