[π] Client side errors swallowed #769
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
name: Labling Issues | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
handle-labeled: | |
if: github.repository == 'QwikDev/qwik' | |
runs-on: ubuntu-latest | |
steps: | |
- name: ensure STATUS-1 label is present | |
id: status-1-label-presence | |
# GH's built-in functions do not allow to search for array values that start with something, so we're using node for this | |
run: | | |
echo present=$( | |
node -e ' | |
const labels = JSON.parse(`${{ toJSON(github.event.issue.labels.*.name) }}`); | |
console.log(labels.some(l => l.startsWith("STATUS-1:"))); | |
' | |
) >> $GITHUB_OUTPUT | |
- name: remove needs triage | |
if: steps.status-1-label-presence.outputs.present == 'true' && (contains(github.event.label.name, 'STATUS-2:') || contains(github.event.label.name, 'STATUS-3:')) | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'remove-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'STATUS-1: needs triage' | |
- name: needs reproduction time limit | |
if: contains(github.event.label.name, 'needs reproduction') | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
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://qwik.new). | |
[Here](https://antfu.me/posts/why-reproductions-are-required#why-reproduction) is why we really need a minimal reproduction. | |
Issues marked with `STATUS-2: needs reproduction` will be automatically closed if they have no activity within 14 days. | |
Thanks π | |
- name: missing info time limit | |
if: contains(github.event.label.name, 'missing info') | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please provide the missing information requested above. | |
Issues marked with `STATUS-2: missing info` will be automatically closed if they have no activity within 14 days. | |
Thanks π |