Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,18 @@ jobs:

bun run parse-audit.ts > slack-payload.json

# This fork has no Slack webhook, so an unguarded post failed the whole
# audit every night even when the audit itself passed.
- name: Send to Slack
if: always()
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
run: |
curl -X POST \
if [ -z "${SLACK_WEBHOOK_URL:-}" ]; then
echo "SLACK_WEBHOOK_URL is not configured; skipping notification."
exit 0
fi
curl -fsS -X POST \
-H 'Content-Type: application/json' \
-d @slack-payload.json \
$SLACK_WEBHOOK_URL
"$SLACK_WEBHOOK_URL"
1 change: 1 addition & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ jobs:
dependency-review:
permissions:
contents: read
pull-requests: write # the reusable job posts the review summary on the PR
uses: NDDev-it-com/ci-workflows/.github/workflows/public-dependency-review.yml@2ccb80e96f5771b6a6b4eae63a4f47e232906dc7 # 0.12.0
115 changes: 0 additions & 115 deletions .github/workflows/top-issues.yml

This file was deleted.