-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Richard Case <[email protected]>
- Loading branch information
1 parent
6d896f3
commit 7967e4b
Showing
15 changed files
with
555 additions
and
1 deletion.
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,2 @@ | ||
# Global owners | ||
@richardcase |
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: Bug report | ||
about: Tell us about a problem you are experiencing | ||
title: '' | ||
labels: kind/bug | ||
assignees: '' | ||
--- | ||
|
||
**What happened:** | ||
[A clear and concise description of what the bug is.] | ||
|
||
|
||
**What did you expect to happen:** | ||
|
||
|
||
**How to reproduce it:** | ||
|
||
|
||
**Anything else you would like to add:** | ||
[Miscellaneous information that will assist in solving the issue.] | ||
|
||
|
||
**Environment:** | ||
|
||
- reignite version: | ||
- OS (e.g. from `/etc/os-release`): |
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 @@ | ||
blank_issues_enabled: false |
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,15 @@ | ||
--- | ||
name: Feature enhancement request | ||
about: Suggest an idea for reignite | ||
title: '' | ||
labels: kind/feature | ||
assigness: '' | ||
--- | ||
|
||
**Describe the solution you'd like:** | ||
[A clear and concise description of what you want to happen.] | ||
|
||
**Why do you want this feature:** | ||
|
||
**Anything else you would like to add:** | ||
[Miscellaneous information that will assist in solving the issue.] |
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,35 @@ | ||
<!-- | ||
Label the PR with the kind of change this for: | ||
kind/feature | ||
kind/bug | ||
kind/documentation | ||
kind/regression | ||
--> | ||
|
||
**What this PR does / why we need it**: | ||
|
||
<!-- Enter a description of the change and why this change is needed --> | ||
|
||
**Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: | ||
Fixes # | ||
|
||
**Special notes for your reviewer**: | ||
|
||
**Checklist**: | ||
<!-- Put an "X" character inside the brackets of each completed task. Some may be optional depending on the PR in which case these can be deleted --> | ||
|
||
- [ ] squashed commits | ||
- [ ] includes documentation | ||
- [ ] adds unit tests | ||
- [ ] adds or updates e2e tests | ||
|
||
**Release note**: | ||
<!-- Write your release note: | ||
1. Enter your extended release note in the below block. | ||
2. If the PR requires additional action from users switching to the new release, include the string "action required". | ||
2. If no release note is required, just write "NONE"....however we encourage contributors to never use this as release notes are incredible useful. | ||
--> | ||
```release-note | ||
``` |
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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 @@ | ||
name: pr_checks | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
name: Label the PR size | ||
steps: | ||
- uses: codelytv/pr-size-labeler@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_max_size: '50' | ||
s_max_size: '200' | ||
m_max_size: '1500' | ||
l_max_size: '5000' | ||
fail_if_xl: 'false' | ||
message_if_xl: 'This PR is so big! Please, split it 😊' |
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,20 @@ | ||
name: pr_type | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- labeled | ||
- unlabeled | ||
|
||
jobs: | ||
check_pull_request_type: | ||
name: Check for PR kind | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: docker://agilepathway/pull-request-label-checker:latest | ||
with: | ||
one_of: kind/bug,kind/documentation,kind/feature,kind/regression | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} |
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,24 @@ | ||
name: titlecheck | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
|
||
jobs: | ||
titlecheck: | ||
name: PR title follows coventional commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check conventinal title | ||
uses: aslafy-z/conventional-pr-title-action@master | ||
with: | ||
success-state: Title follows the specification. | ||
failure-state: Title does not follow the specification. | ||
context-name: conventional-pr-title | ||
preset: conventional-changelog-angular@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,23 @@ | ||
# Test binary | ||
*.test | ||
|
||
# Output of the go coverage tool | ||
coverage.out | ||
|
||
# GoReleaser dist folder | ||
dist/ | ||
|
||
# Bin | ||
bin/ | ||
|
||
# direnv files: | ||
.envrc | ||
|
||
# vim swp files | ||
*.swp | ||
|
||
# IDE dirs | ||
.vscode/ | ||
.idea/ | ||
|
||
.DS_Store |
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,7 @@ | ||
## Community Code of Conduct | ||
|
||
Weaveworks follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior | ||
may be reported by contacting a Weaveworks project maintainer, or | ||
Alexis Richardson ([email protected]). |
Oops, something went wrong.