From 95906f1ede38e11e2a0bc35305a5b1a57aec778f Mon Sep 17 00:00:00 2001 From: Marco Ochse Date: Tue, 26 Aug 2025 10:23:19 +0200 Subject: [PATCH] Update basic-support-info.yml --- .github/workflows/basic-support-info.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/basic-support-info.yml b/.github/workflows/basic-support-info.yml index accc603c..a80f669d 100644 --- a/.github/workflows/basic-support-info.yml +++ b/.github/workflows/basic-support-info.yml @@ -19,6 +19,17 @@ jobs: - name: Install jq run: sudo apt-get install jq -y + - name: Skip if issue has "investigate" label + id: skip_investigate + run: | + LABELS=$(cat $GITHUB_EVENT_PATH | jq -r '.issue.labels[].name') + for label in $LABELS; do + if [ "$label" = "investigate" ]; then + echo "Issue has 'investigate' label. Skipping workflow." + exit 0 + fi + done + - name: Check issue for basic support info id: check_issue run: |