We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72aef42 commit 61385c2Copy full SHA for 61385c2
1 file changed
.github/workflows/Security-Notification.yml
@@ -28,11 +28,11 @@ jobs:
28
29
# 3. Filter for NEW items only
30
# Open alerts created > 65 mins ago
31
- # ALERTS=$(echo "$RAW_DATA" | jq --arg TIME "$TIME_THRESHOLD" \
32
- # '[ .[] | select(.state == "open") | select(.created_at > $TIME) ]')
+ ALERTS=$(echo "$RAW_DATA" | jq --arg TIME "$TIME_THRESHOLD" \
+ '[ .[] | select(.state == "open") | select(.created_at > $TIME) ]')
33
34
# --- FOR TESTING ONLY ---
35
- ALERTS=$(echo "$RAW_DATA" | jq '[ .[] | select(.state == "open") ]')
+ # ALERTS=$(echo "$RAW_DATA" | jq '[ .[] | select(.state == "open") ]')
36
# ---------------------------------------------------------------
37
38
# 4. Check count
0 commit comments