mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-04-26 14:10:43 +00:00
chore: enable firstlook workflow_dispatch for backlog scans
Adds pr-number input and workflow_dispatch trigger so existing open PRs can be scanned without waiting for a new push. Leave pr-number empty to loop all open PRs; supply a number to rescan one.
This commit is contained in:
parent
41cc525e06
commit
b3bb5efc58
1 changed files with 7 additions and 0 deletions
7
.github/workflows/firstlook.yml
vendored
7
.github/workflows/firstlook.yml
vendored
|
|
@ -2,6 +2,12 @@ name: firstlook
|
|||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
pr-number:
|
||||
description: 'PR number to scan (leave empty for all open PRs)'
|
||||
required: false
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
assess:
|
||||
|
|
@ -12,5 +18,6 @@ jobs:
|
|||
steps:
|
||||
- uses: getagentseal/firstlook@main
|
||||
with:
|
||||
pr-number: ${{ inputs.pr-number }}
|
||||
skip-users: 'dependabot[bot],renovate[bot]'
|
||||
fail-on: 'unknown'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue