We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a7056 commit 322829cCopy full SHA for 322829c
.github/workflows/ci.yml
@@ -8,10 +8,10 @@ on:
8
required: true
9
default: 3
10
type: number
11
- ignore:
12
- description: 'Ignore implementations marked as excluded'
+ no_ignore:
+ description: "Don't ignore implementations marked as excluded"
13
required: false
14
- default: true
+ default: false
15
type: boolean
16
push:
17
branches:
@@ -30,7 +30,7 @@ jobs:
30
- name: Set implementations
31
id: implementations
32
env:
33
- NO_IGNORE: ${{ (!inputs.ignore || github.event.name == 'schedule') && 'yes' || 'no' }}
+ NO_IGNORE: ${{ (inputs.no_ignore || github.event.name == 'schedule') && 'yes' || 'no' }}
34
run: (echo -n "implementations="; ./.github/list-implementations.sh) >> $GITHUB_OUTPUT
35
36
benchmark:
0 commit comments