mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-08-29 14:26:24 +00:00
Update basic-support-info.yml
This commit is contained in:
parent
eefbf7ddcf
commit
95906f1ede
1 changed files with 11 additions and 0 deletions
11
.github/workflows/basic-support-info.yml
vendored
11
.github/workflows/basic-support-info.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue