Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/label-closed-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
name: Label PR Closure Reason
runs-on: ubuntu-latest
timeout-minutes: 10
# Only label PRs that were closed WITHOUT merging, and skip Copilot agent branches
if: github.event.pull_request.merged == false && !startsWith(github.event.pull_request.head.ref, 'copilot/')
# Only label PRs that were closed WITHOUT merging
if: github.event.pull_request.merged == false
steps:
- name: Determine and apply closure reason label
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/pr-description-caveman.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/pr-description-caveman.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Rewrites a merged PR description with a structured, considered summ
on:
pull_request:
types: [closed]
if: github.event.pull_request.merged == true && !startsWith(github.event.pull_request.head.ref, 'signed/jsweep/') && !startsWith(github.event.pull_request.head.ref, 'copilot/')
if: github.event.pull_request.merged == true && !startsWith(github.event.pull_request.head.ref, 'signed/jsweep/')
permissions:
contents: read
pull-requests: read
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/sighthound-security-scan.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .github/workflows/sighthound-security-scan.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
private: true
emoji: "🛡️"
name: Sighthound Security Scan
description: Daily security scan using Sighthound; runs agent only when actionable findings are detected and opens one issue with the top violations
description: Daily security scan using Sighthound; triages actionable findings and opens one issue with the top violations
on:
schedule: daily on weekdays
workflow_dispatch:
Expand All @@ -11,7 +11,6 @@ permissions:
issues: read
actions: read
strict: true
if: needs.sighthound_scan.outputs.actionable_findings_detected == 'true'
jobs:
sighthound_scan:
runs-on: ubuntu-latest
Expand Down