mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
Get the complain toggle right
This commit is contained in:
parent
961a4f65e7
commit
54257d8075
1 changed files with 4 additions and 1 deletions
5
.github/workflows/new-version.yml
vendored
5
.github/workflows/new-version.yml
vendored
|
@ -14,6 +14,9 @@ on:
|
||||||
description: eg. `foo.com=1.2.3 bar.com^2.3.4`
|
description: eg. `foo.com=1.2.3 bar.com^2.3.4`
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
complain:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ingest:
|
ingest:
|
||||||
|
@ -37,5 +40,5 @@ jobs:
|
||||||
issues: write
|
issues: write
|
||||||
with:
|
with:
|
||||||
pkg: ${{ matrix.pkg }}
|
pkg: ${{ matrix.pkg }}
|
||||||
complain: ${{ github.event_name == 'workflow_call' }}
|
complain: ${{ github.event_name == 'workflow_call' || inputs.complain }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
Loading…
Reference in a new issue