From 0b852f3f1cd7529fa2bcf7bd4ed18ce557cfca44 Mon Sep 17 00:00:00 2001 From: smutel Date: Sat, 12 Dec 2020 16:55:37 +0100 Subject: [PATCH 1/3] ci: Add conventional check in CI --- .github/workflows/pr.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b01185ed2..c5f85018d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,6 +15,13 @@ jobs: matrix: go: [ '1.15.x' ] steps: + - name: Check conventional commits in PR + uses: Namchee/conventional-pr@v0.3.0 + with: + access_token: ${{ secrets.github_token }} + label: "no-conventional-commits" + close: false + - name: Checkout uses: actions/checkout@v2.3.4 From e8d0d7bd6916bb5461e892e7dcc411c987fd32a5 Mon Sep 17 00:00:00 2001 From: smutel Date: Sat, 12 Dec 2020 17:34:51 +0100 Subject: [PATCH 2/3] ci: Add new feature issue template --- .github/ISSUE_TEMPLATE/feature.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature.md diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md new file mode 100644 index 000000000..147ec9638 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -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 +--- + + + +## Summary + + +## Example + +### Usage + + +### Terraform code + +```hcl + +``` + +### Tasks executed by this terraform code + From 3ceba43b2fee21e2578fe48e4fb4c69469ff6da9 Mon Sep 17 00:00:00 2001 From: smutel Date: Sat, 12 Dec 2020 17:44:09 +0100 Subject: [PATCH 3/3] ci: Add auto-assign configuration --- .github/auto_assign.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/auto_assign.yml diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml new file mode 100644 index 000000000..5aceade1d --- /dev/null +++ b/.github/auto_assign.yml @@ -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