Skip to content

Commit 322829c

Browse files
committed
Debug ignore
1 parent e1a7056 commit 322829c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
required: true
99
default: 3
1010
type: number
11-
ignore:
12-
description: 'Ignore implementations marked as excluded'
11+
no_ignore:
12+
description: "Don't ignore implementations marked as excluded"
1313
required: false
14-
default: true
14+
default: false
1515
type: boolean
1616
push:
1717
branches:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set implementations
3131
id: implementations
3232
env:
33-
NO_IGNORE: ${{ (!inputs.ignore || github.event.name == 'schedule') && 'yes' || 'no' }}
33+
NO_IGNORE: ${{ (inputs.no_ignore || github.event.name == 'schedule') && 'yes' || 'no' }}
3434
run: (echo -n "implementations="; ./.github/list-implementations.sh) >> $GITHUB_OUTPUT
3535

3636
benchmark:

0 commit comments

Comments
 (0)