-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dca04c6
commit bf767bd
Showing
4 changed files
with
92 additions
and
7 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
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
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 @@ | ||
policy: | ||
- template: ['bug.yml', 'question.yml'] | ||
- section: | ||
- id: [bug-location] | ||
block-list: ['Other'] | ||
label: | ||
- name: 'documentation' | ||
keys: ['Documentation'] | ||
- name: 'FarmVibes.AI setup' | ||
keys: ['FarmVibes.AI setup'] | ||
- name: 'notebooks' | ||
keys: ['Notebook execution'] | ||
- name: 'workflows' | ||
keys: ['Workflow execution'] | ||
- section: | ||
- id: [cluster-type] | ||
label: | ||
- name: 'local cluster' | ||
keys: ['Local cluster'] | ||
- name: 'remote cluster' | ||
keys: ['Remote (ASK) cluster'] | ||
- section: | ||
- id: [info-location] | ||
block-list: ['General question'] | ||
label: | ||
- name: 'enhancement' | ||
keys: ['Feature request'] | ||
- name: 'documentation' | ||
keys: ['Documentation'] | ||
- name: 'FarmVibes.AI setup' | ||
keys: ['FarmVibes.AI setup'] | ||
- name: 'notebooks' | ||
keys: ['Notebook'] | ||
- name: 'workflows' | ||
keys: ['Workflow'] |
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,34 @@ | ||
name: Issue labeler | ||
on: | ||
issues: | ||
types: [ opened ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
label-component: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
# required for all workflows | ||
issues: write | ||
|
||
# only required for workflows in private repositories | ||
actions: read | ||
contents: read | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Parse issue form | ||
uses: stefanbuck/github-issue-parser@v3 | ||
id: issue-parser | ||
# with: | ||
# template-path: .github/ISSUE_TEMPLATE/bug.yml | ||
|
||
- name: Set labels based bug type | ||
uses: redhat-plumbers-in-action/advanced-issue-labeler@v2 | ||
with: | ||
issue-form: ${{ steps.issue-parser.outputs.jsonString }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |