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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Dependabot PRs update dependency metadata only; avoid consuming a
# self-hosted runner for every automated update. Skipped jobs report a
# successful check, so required checks do not remain pending.
if: github.event_name != 'pull_request' || github.event.pull_request.user.login != 'dependabot[bot]'
if: github.event_name != 'pull_request' || github.event.pull_request.user.type != 'Bot'
runs-on: [self-hosted, node-b, linux, x64, rust]
env:
FORGEJO_CARGO_TOKEN: ${{ secrets.FORGEJO_CARGO_TOKEN }}
Expand All @@ -41,7 +41,7 @@ jobs:
- run: cargo test --workspace

frontend:
if: github.event_name != 'pull_request' || github.event.pull_request.user.login != 'dependabot[bot]'
if: github.event_name != 'pull_request' || github.event.pull_request.user.type != 'Bot'
runs-on: [self-hosted, node-b, linux, x64, rust]
steps:
- uses: actions/checkout@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
policy:
# Dependabot PRs do not need another policy scan on the self-hosted
# runner; the workflow check is recorded as successful when skipped.
if: github.event_name != 'pull_request' || github.event.pull_request.user.login != 'dependabot[bot]'
if: github.event_name != 'pull_request' || github.event.pull_request.user.type != 'Bot'
runs-on: [self-hosted, node-b, linux, x64, rust]
steps:
- uses: actions/checkout@v7
Expand Down