@@ -31,16 +31,17 @@ jobs:
3131
3232## Configuration
3333
34- | Property | Required | Value |
35- | ---------------- | -------- | ----------------------------------------------------------- |
36- | ` github-token` | Yes | A GitHub API token (`GITHUB_TOKEN` is available by default) |
37- | `project` | Yes | The project being managed |
38- | `auto-add` | No | If true, all new issues are added to the project |
39- | `triage-column` | No | Column name for new, unassigned issues |
40- | `triage-label` | No | Label to apply to new issues |
41- | `todo-column` | No | Column name for triaged issues |
42- | `working-column` | No | Column name for in-progress issues |
43- | `done-column` | No | Column name for completed issues |
34+ | Property | Required | Value |
35+ | ---------------- | -------- | ----------------------------------------------------------------------------------------------- |
36+ | ` github-token` | Yes | A GitHub API token (`GITHUB_TOKEN` is available by default) |
37+ | `project` | Yes | The project being managed |
38+ | `auto-add` | No | If true, all new issues are added to the project |
39+ | `triage-column` | No | Column name for new, unassigned issues |
40+ | `triage-label` | No | Label to apply to new issues |
41+ | `triaged-labels` | No | A comma separated list of labels; the presence of any of them marks an issue as already-triaged |
42+ | `todo-column` | No | Column name for triaged issues |
43+ | `working-column` | No | Column name for in-progress issues |
44+ | `done-column` | No | Column name for completed issues |
4445
4546# # How it works
4647
@@ -53,7 +54,8 @@ executed if that property is defined.
5354Rules :
5455
5556- If `auto-add` is true, new issues will be added to `triage-column` and have
56- ` triage-label` set
57+ ` triage-label` set, unless an issue has a label in `triaged-labels`, in which
58+ case it will be moved to `todo-column`
5759- Issues in `triage-column` will be moved to `todo-column` when `triage-label`
5860 is removed
5961- Issues that are in `todo-column` or `triage-column` will be moved to
0 commit comments