From 2ed1d5275c471bf3d71f6fc404c4fb23643401aa Mon Sep 17 00:00:00 2001 From: iamtoruk Date: Tue, 21 Apr 2026 06:17:56 -0700 Subject: [PATCH] chore: add firstlook workflow for PR author reputation check 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. --- .github/workflows/firstlook.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/firstlook.yml diff --git a/.github/workflows/firstlook.yml b/.github/workflows/firstlook.yml new file mode 100644 index 0000000..43f1d02 --- /dev/null +++ b/.github/workflows/firstlook.yml @@ -0,0 +1,16 @@ +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'