mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-04-28 06:59:37 +00:00
Runs on every PR open/reopen/synchronize against getagentseal/firstlook and fails the check when the author's score is 'unknown' (new or untracked accounts). Skips bot accounts so dependabot and renovate pass through. This screens the same drive-by pattern that landed in PR #118 (octo-patch, fresh automation account) without requiring a manual tier check on every submission.
16 lines
338 B
YAML
16 lines
338 B
YAML
name: firstlook
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
assess:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
steps:
|
|
- uses: getagentseal/firstlook@main
|
|
with:
|
|
skip-users: 'dependabot[bot],renovate[bot]'
|
|
fail-on: 'unknown'
|