-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Alex Collins <[email protected]>
- Loading branch information
Showing
2 changed files
with
87 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,72 @@ | ||
# https://github.com/DeFiCh/oss-governance-bot | ||
version: v1 | ||
|
||
issue: | ||
labels: | ||
- prefix: area | ||
list: | ||
- area/api | ||
- area/artifacts | ||
- area/build | ||
- area/cli | ||
- area/controller | ||
- area/cron-workflows | ||
- area/daemon-steps | ||
- area/docs | ||
- area/executor | ||
- area/exit-handler | ||
- area/hooks | ||
- area/looping | ||
- area/manifests | ||
- area/memoization | ||
- area/metrics | ||
- area/multi-cluster | ||
- area/mutex-semaphore | ||
- area/plugins | ||
- area/sdks | ||
- area/spec | ||
- area/sso-rbac | ||
- area/suspend-resume | ||
- area/templates/container | ||
- area/templates/container-set | ||
- area/templates/dag | ||
- area/templates/data | ||
- area/templates/http | ||
- area/templates/resource | ||
- area/templates/script | ||
- area/templates/steps | ||
multiple: true | ||
needs: | ||
comment: | | ||
@$AUTHOR: There are no area labels on this issue. Adding a label will help expedite your issue. **If you are unsure what to do, make your best guess. We can change it later** | ||
* `/area api` | ||
* `/area artifacts` | ||
* `/area build` | ||
* `/area cli` | ||
* `/area controller` | ||
* `/area cron-workflows` | ||
* `/area daemon-steps` | ||
* `/area docs` | ||
* `/area executor` | ||
* `/area exit-handler` | ||
* `/area hooks` | ||
* `/area looping` | ||
* `/area manifests` | ||
* `/area memoization` | ||
* `/area metrics` | ||
* `/area multi-cluster` | ||
* `/area mutex-semaphore` | ||
* `/area plugins` | ||
* `/area sdks` | ||
* `/area spec` | ||
* `/area sso-rbac` | ||
* `/area suspend-resume` | ||
* `/area templates/container` | ||
* `/area templates/container-set` | ||
* `/area templates/dag` | ||
* `/area templates/data` | ||
* `/area templates/http` | ||
* `/area templates/resource` | ||
* `/area templates/script` | ||
* `/area templates/steps` |
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 @@ | ||
# https://github.com/DeFiCh/oss-governance-bot | ||
name: Governance Bot | ||
|
||
on: | ||
issues: | ||
types: [ opened, labeled, unlabeled ] | ||
issue_comment: | ||
types: [ created ] | ||
|
||
jobs: | ||
governance: | ||
name: Governance | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: DeFiCh/oss-governance-bot@v2 |