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
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
include:
- language: javascript-typescript
build-mode: none
- language: actions
build-mode: none

steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/instant-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check dispatch token presence
id: gate
run: echo "has_token=${{ secrets.FARM_DISPATCH_TOKEN != '' }}" >> "$GITHUB_OUTPUT"
- name: Trigger Propagation
if: steps.gate.outputs.has_token == 'true'
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3
with:
token: ${{ secrets.FARM_DISPATCH_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
build:
name: Build Artifacts
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
steps:
Expand All @@ -42,6 +43,7 @@ jobs:
changelog:
name: Generate Changelog
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
outputs:
Expand Down Expand Up @@ -88,6 +90,7 @@ jobs:
name: Create GitHub Release
needs: [build, changelog]
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write
steps:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/rhodibot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ on:
schedule:
- cron: '0 6 * * 1' # Every Monday at 06:00 UTC
workflow_dispatch: # Manual trigger
workflow_run:
workflows: ["Hypatia Neurosymbolic Analysis"]
types: [completed]
# NOTE: the privileged `workflow_run` trigger (on Hypatia completion) was removed —
# it ran with contents/pull-requests write and was flagged as a critical workflow
# pattern. Rhodibot still runs weekly (schedule) and on demand (workflow_dispatch).

permissions:
contents: write
Expand All @@ -27,6 +27,7 @@ permissions:
jobs:
rhodibot:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,10 @@ permissions: read-all

jobs:
analysis:
permissions:
security-events: write
id-token: write
contents: read
actions: read
uses: hyperpolymath/standards/.github/workflows/scorecard-reusable.yml@5a93d9d57cc04de4002d6d0ecd336fc7a8698910
secrets: inherit
3 changes: 3 additions & 0 deletions .github/workflows/static-analysis-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
panic-attack-assail:
name: panic-attack assail
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- name: Checkout repository
Expand Down Expand Up @@ -123,6 +124,7 @@ jobs:
hypatia-scan:
name: Hypatia neurosymbolic scan
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- name: Checkout repository
Expand Down Expand Up @@ -235,6 +237,7 @@ jobs:
deposit-findings:
name: Deposit findings for gitbot-fleet
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [panic-attack-assail, hypatia-scan]
if: always()

Expand Down
Loading