File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 15
15
# Candidate Recommendation Snapshot).
16
16
workflow_dispatch :
17
17
inputs :
18
+ dry-run :
19
+ required : true
20
+ type : boolean
21
+ description : If set, Echidna will validate but not publish.
18
22
w3c-status :
19
23
required : true
20
24
type : choice
60
64
W3C_ECHIDNA_TOKEN_CORE : ${{ secrets.W3C_ECHIDNA_TOKEN_CORE }}
61
65
W3C_ECHIDNA_TOKEN_JSAPI : ${{ secrets.W3C_ECHIDNA_TOKEN_JSAPI }}
62
66
W3C_ECHIDNA_TOKEN_WEBAPI : ${{ secrets.W3C_ECHIDNA_TOKEN_WEBAPI }}
63
- ECHIDNA_DRYRUN : ${{ !(github.event_name == 'push' && github.repository == 'WebAssembly/spec' && github.ref == 'refs/heads/main') }}
67
+ ECHIDNA_DRYRUN : |-
68
+ ${{ (github.event_name == 'workflow_dispatch' && inputs.dry-run) ||
69
+ !(github.event_name == 'push' && github.repository == 'WebAssembly/spec' && github.ref == 'refs/heads/main') }}
64
70
- name : Validate ${{ matrix.spec }} spec with Echidna
65
71
if : env.W3C_USERNAME
66
72
run : cd document && make -e -C ${{ matrix.spec }} WD-echidna
You can’t perform that action at this time.
0 commit comments