Procházet zdrojové kódy

Add Issue Triaging document (#9181)

Trask Stalnaker před 1 rokem
rodič
revize
b7bcbb89d9
2 změnil soubory, kde provedl 37 přidání a 2 odebrání
  1. 4 2
      .github/workflows/issue-management-stale-action.yml
  2. 33 0
      ISSUES.md

+ 4 - 2
.github/workflows/issue-management-stale-action.yml

@@ -18,8 +18,10 @@ jobs:
           stale-issue-message: >
             This has been automatically marked as stale because it has been marked
             as needing author feedback and has not had any activity for 7 days.
-            It will be closed if no further activity occurs within 7 days of this comment.
+            It will be closed automatically if there is no response from the author
+            within 7 additional days from this comment.
           stale-pr-message: >
             This has been automatically marked as stale because it has been marked
             as needing author feedback and has not had any activity for 7 days.
-            It will be closed if no further activity occurs within 7 days of this comment.
+            It will be closed automatically if there is no response from the author
+            within 7 additional days from this comment.

+ 33 - 0
ISSUES.md

@@ -0,0 +1,33 @@
+# Issues
+
+## Labels
+
+### `needs author feedback`
+
+This is something that needs additional clarification from the author.
+
+Note: issues with this label are automatically marked stale if there is no activity for 7 days,
+and then closed automatically if there is no response from the author within 7 days after that.
+
+### `needs minimal repro`
+
+Minimal repros are helpful for a lot of issues (not only for bugs).
+
+They allow the maintainers (and others) to much better understand exactly what the
+issue author is trying to do, and what they expect to happen.
+
+Ideally minimal repros should be posted to a github repository,
+and should include a `README.md` that explains exactly how to build and run the repro,
+and what the output of the repro is, and what you expect (or would like) the output of
+the repro to be.
+
+Note: issues with this label are automatically marked stale if there is no activity for 30 days,
+and then closed automatically if there is no response from the author within 30 days after that.
+
+### `contribution welcome`
+
+This is something that fits the scope of the project.
+The maintainers aren't planning to implement it, but would welcome and help review if
+someone else wants to implement and contribute it to the project.
+
+Note: issues with this label are automatically closed if there is no activity for 365 days.