-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GH workflow to new project boards
- Loading branch information
1 parent
89cef98
commit a478786
Showing
4 changed files
with
55 additions
and
52 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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
bug: | ||
- '- :bug: Bug' | ||
- '- :bug: Bug' | ||
feature-long-term: | ||
- '- :heavy_plus_sign: Feature request' | ||
- '- :heavy_plus_sign: Feature request' | ||
performance: | ||
- '- :snail: Performance issue' | ||
- '- :snail: Performance issue' | ||
question: | ||
- '- :question: Question' | ||
- '- :question: Question' | ||
|
||
mc-1.12: | ||
- 'Minecraft: 1.12' | ||
- 'Minecraft: 1.12' | ||
mc-1.14: | ||
- 'Minecraft: 1.14' | ||
- 'Minecraft: 1.14' | ||
mc-1.15: | ||
- 'Minecraft: 1.15' | ||
- 'Minecraft: 1.15' | ||
mc-1.16: | ||
- 'Minecraft: 1.16' | ||
- 'Minecraft: 1.16' | ||
mc-1.18: | ||
- 'Minecraft: 1.18' | ||
- 'Minecraft: 1.18' | ||
mc-1.19: | ||
- 'Minecraft: 1.19' | ||
- 'Minecraft: 1.19' | ||
mc-1.20: | ||
- 'Minecraft: 1.20' | ||
- 'Minecraft: 1.20' | ||
mc-1.21: | ||
- 'Minecraft: 1.21' | ||
- 'Minecraft: 1.21' | ||
mc-1.22: | ||
- 'Minecraft: 1.22' | ||
- 'Minecraft: 1.22' | ||
mc-1.23: | ||
- 'Minecraft: 1.23' | ||
- 'Minecraft: 1.23' | ||
mc-1.24: | ||
- 'Minecraft: 1.24' | ||
- 'Minecraft: 1.24' | ||
mc-1.25: | ||
- 'Minecraft: 1.25' | ||
- 'Minecraft: 1.25' |
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 |
---|---|---|
|
@@ -3,40 +3,43 @@ on: | |
issues: | ||
types: [labeled] | ||
|
||
env: | ||
MY_GITHUB_TOKEN: ${{ secrets.PAT }} | ||
|
||
jobs: | ||
assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Maintenance Issues | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'bug') || | ||
contains(github.event.issue.labels.*.name, 'performance') || | ||
contains(github.event.issue.labels.*.name, 'question') | ||
with: | ||
project: 'https://github.com/orgs/CyclopsMC/projects/1' | ||
column_name: 'To Do' | ||
- name: Feature Optional | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'feature-long-term') | ||
with: | ||
project: 'https://github.com/orgs/CyclopsMC/projects/2' | ||
column_name: 'Options' | ||
- name: Feature Accepted | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'feature') | ||
with: | ||
project: 'https://github.com/orgs/CyclopsMC/projects/2' | ||
column_name: 'Accepted (To Do)' | ||
- name: More Information Needed | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'more-information-needed') | ||
with: | ||
project: 'https://github.com/orgs/CyclopsMC/projects/1' | ||
column_name: 'On hold (awaiting input)' | ||
- name: Maintenance Issues | ||
id: add-project-maintenance | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/CyclopsMC/projects/3 | ||
github-token: ${{ secrets.PAT }} | ||
labeled: bug, performance, question, more-information-needed | ||
label-operator: OR | ||
- name: Development Issues | ||
id: add-project-development | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/CyclopsMC/projects/4 | ||
github-token: ${{ secrets.PAT }} | ||
labeled: feature-long-term, feature | ||
label-operator: OR | ||
- name: Feature Accepted | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'feature') | ||
uses: titoportas/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/CyclopsMC/projects/4 | ||
github-token: ${{ secrets.PAT }} | ||
item-id: ${{ steps.add-project-development.outputs.itemId }} | ||
field-keys: Status | ||
field-values: 'Accepted (To Do)' | ||
- name: More Information Needed | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'more-information-needed') | ||
uses: titoportas/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/CyclopsMC/projects/3 | ||
github-token: ${{ secrets.PAT }} | ||
item-id: ${{ steps.add-project-maintenance.outputs.itemId }} | ||
field-keys: Status | ||
field-values: 'On hold (awaiting input)' |
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