diff options
Diffstat (limited to '.github/workflows/projects.yml')
-rw-r--r-- | .github/workflows/projects.yml | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/.github/workflows/projects.yml b/.github/workflows/projects.yml index 979d00e5e4..253f6314d2 100644 --- a/.github/workflows/projects.yml +++ b/.github/workflows/projects.yml @@ -33,25 +33,23 @@ jobs: column-field: Status label-to-column-map: | { - "status: needs triage": "🕑 Needs Triage", + "resolution: cannot reproduce": "Invalid", + "resolution: duplicate": "Invalid", + "resolution: incomplete": "Invalid", + "resolution: invalid": "Invalid", + "resolution: superseded": "Invalid", + "resolution: unsupported": "Invalid", + "resolution: won't fix": "Invalid", + "resolution: works as intended": "Invalid", "status: accepted": "✅ Accepted", - "status: unlikely": "✅ Accepted", - "status: in progress": "Needs Work", - "status: rebase required": "Needs Work", + "status: awaiting response": "⌛ Waiting for Reporter", "status: blocked": "Needs Work", "status: defer upstream": "Needs Work", + "status: in progress": "Needs Work", "status: input wanted": "Needs Work", - "we must go deeper": "Needs Work", - "has rough edges": "Needs Work", - "status: waiting on reporter": "⌛ Waiting for Reporter", - "resolution: works-as-intended": "Invalid", - "resolution: invalid": "Invalid", - "resolution: wontfix": "Invalid", - "resolution: duplicate": "Invalid", - "resolution: cannot reproduce": "Invalid", - "resolution: unsupported": "Invalid", - "resolution: incomplete": "Invalid", - "resolution: superseded": "Invalid" + "status: needs triage": "🕑 Needs Triage", + "status: rebase required": "Needs Work", + "status: unlikely": "✅ Accepted" } - uses: PaperMC/[email protected] @@ -65,14 +63,14 @@ jobs: # include "status: needs triage" below to catch any closed issues without setting a resolution label-to-column-map: | { - "status: accepted": "Done", - "status: needs triage": "Invalid", - "resolution: works-as-intended": "Invalid", - "resolution: invalid": "Invalid", - "resolution: wontfix": "Invalid", - "resolution: duplicate": "Invalid", "resolution: cannot reproduce": "Invalid", - "resolution: unsupported": "Invalid", + "resolution: duplicate": "Invalid", "resolution: incomplete": "Invalid", - "resolution: superseded": "Invalid" + "resolution: invalid": "Invalid", + "resolution: superseded": "Invalid", + "resolution: unsupported": "Invalid", + "resolution: won't fix": "Invalid", + "resolution: works as intended": "Invalid", + "status: accepted": "Done", + "status: needs triage": "Invalid", } |