summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matt Kane <m@mk.gg> 2025-01-24 17:01:10 +0000
committerGravatar GitHub <noreply@github.com> 2025-01-24 17:01:10 +0000
commit1017bca527f504e541bce1db29bc74917b865906 (patch)
treebe36b464ff22ca456b5b234a2c8a9932bca8257e
parente36837f91437a66d5c50eb1c399b3d812743251d (diff)
downloadastro-1017bca527f504e541bce1db29bc74917b865906.tar.gz
astro-1017bca527f504e541bce1db29bc74917b865906.tar.zst
astro-1017bca527f504e541bce1db29bc74917b865906.zip
chore: adds wontfix label action (#13062)
* chore: adds wontfix label action * Wording * Update .github/workflows/issue-labeled.yml Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> --------- Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
-rw-r--r--.github/workflows/issue-labeled.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml
index b0a0e80c7..19303083c 100644
--- a/.github/workflows/issue-labeled.yml
+++ b/.github/workflows/issue-labeled.yml
@@ -28,3 +28,20 @@ jobs:
body: |
Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://astro.new/repro). Issues marked with `needs repro` will be closed if they have no activity within 3 days.
labels: "needs triage"
+ - name: wontfix
+ if: github.event.label.name == 'wontfix'
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: "create-comment, close-issue"
+ token: ${{ secrets.GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ Hello!
+
+ This is an automated message to let you know that we've triaged this issue and unfortunately, we will be closing it as "not planned".
+
+ We sometimes have to close good ideas (even great ones!) because our limited resources simply do not allow us to pursue all possible features and improvements, and when fixing bugs we have to balance the impact of the bug against the effort required for the fix. Before closing this we considered several factors such as the amount of work involved, the severity of the problem, the number of people affected, whether a workaround is available, and the ongoing cost of maintenance.
+
+ If you're seeing this message and believe you can contribute to this issue, please consider submitting a PR yourself. Astro encourages [community contributions]((https://docs.astro.build/en/contribute/)!
+
+ If you have more questions, come and say hi in the [Astro Discord](https://astro.build/chat).