Skip to content

Commit a1e3c57

Browse files
wraithgarlukekarrys
authored andcommitted
Fixes `null` bug in generating yaml
1 parent da74ad9 commit a1e3c57

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"npm-package-arg": "^9.0.1",
4545
"proc-log": "^2.0.0",
4646
"semver": "^7.3.5",
47-
"yaml": "^2.0.0-10"
47+
"yaml": "^2.0.0-11"
4848
},
4949
"files": [
5050
"bin/",

tap-snapshots/test/apply/full-content.js.test.cjs

+6-6
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ updates:
133133
name: Audit
134134
135135
on:
136-
workflow_dispatch: null
136+
workflow_dispatch:
137137
schedule:
138138
# "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1
139139
- cron: "0 1 * * 1"
@@ -163,7 +163,7 @@ jobs:
163163
name: CI
164164
165165
on:
166-
workflow_dispatch: null
166+
workflow_dispatch:
167167
pull_request:
168168
branches:
169169
- '*'
@@ -612,7 +612,7 @@ updates:
612612
name: Audit
613613
614614
on:
615-
workflow_dispatch: null
615+
workflow_dispatch:
616616
schedule:
617617
# "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1
618618
- cron: "0 1 * * 1"
@@ -642,7 +642,7 @@ jobs:
642642
name: CI - bbb
643643
644644
on:
645-
workflow_dispatch: null
645+
workflow_dispatch:
646646
pull_request:
647647
branches:
648648
- '*'
@@ -735,7 +735,7 @@ jobs:
735735
name: CI - @name/aaaa
736736
737737
on:
738-
workflow_dispatch: null
738+
workflow_dispatch:
739739
pull_request:
740740
branches:
741741
- '*'
@@ -828,7 +828,7 @@ jobs:
828828
name: CI
829829
830830
on:
831-
workflow_dispatch: null
831+
workflow_dispatch:
832832
pull_request:
833833
branches:
834834
- '*'

tap-snapshots/test/check/diffs.js.test.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ The repo file audit.yml needs to be updated:
353353
name: Audit
354354
355355
on:
356-
workflow_dispatch: null
356+
workflow_dispatch:
357357
schedule:
358358
# "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1
359359
- cron: "0 1 * * 1"

0 commit comments

Comments
 (0)