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: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Brunch Renovate configuration",
"extends": ["github>hashintel/.github:renovate-config"]
"extends": ["github>hashintel/actions:renovate-config"]
}
4 changes: 2 additions & 2 deletions .github/workflows/housekeeping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- ".github/workflows/housekeeping.yml"
- ".github/renovate.json"
schedule:
- cron: "0 */2 * * *"
- cron: "0 3 * * *"
workflow_dispatch:
inputs:
repoCache:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
actions: read
contents: read
id-token: write
uses: hashintel/.github/.github/workflows/housekeeping-dependencies.yml@db03b98f807376bafb54963f61090600b85125b9 # main
uses: hashintel/actions/.github/workflows/housekeeping-dependencies.yml@66c812140c0f8f4a215c5f54dce5b40b476337d8 # main
with:
repoCache: ${{ inputs.repoCache || 'enabled' }}
logLevel: ${{ inputs.logLevel || 'info' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preflight-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
permissions:
contents: read
pull-requests: write
uses: hashintel/.github/.github/workflows/preflight-dependencies.yml@db03b98f807376bafb54963f61090600b85125b9 # main
uses: hashintel/actions/.github/workflows/preflight-dependencies.yml@66c812140c0f8f4a215c5f54dce5b40b476337d8 # main

pr-title:
name: PR title
permissions:
contents: read
uses: hashintel/.github/.github/workflows/preflight-pr-title.yml@db03b98f807376bafb54963f61090600b85125b9 # main
uses: hashintel/actions/.github/workflows/preflight-pr-title.yml@66c812140c0f8f4a215c5f54dce5b40b476337d8 # main
4 changes: 2 additions & 2 deletions .github/workflows/preflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
name: Todo comments
permissions:
contents: read
uses: hashintel/.github/.github/workflows/preflight-todo-comments.yml@db03b98f807376bafb54963f61090600b85125b9 # main
uses: hashintel/actions/.github/workflows/preflight-todo-comments.yml@66c812140c0f8f4a215c5f54dce5b40b476337d8 # main

lint:
name: Lint
permissions:
contents: read
uses: hashintel/.github/.github/workflows/preflight-actionlint.yml@db03b98f807376bafb54963f61090600b85125b9 # main
uses: hashintel/actions/.github/workflows/preflight-actionlint.yml@66c812140c0f8f4a215c5f54dce5b40b476337d8 # main

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Public repo cannot call private workflows

High Severity

Brunch is public, but the new uses refs point at hashintel/actions, which is not a public hashintel repo. GitHub blocks public callers from running reusable workflows in private or internal repositories, so these preflight and housekeeping jobs fail to start. The previous hashintel/.github source was public.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c284a83. Configure here.

Loading