Skip to content

Commit 84ac705

Browse files
authored
Fix markdown workflow names (#1963)
1 parent 3bdef20 commit 84ac705

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/markdown_crash_test.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
# Run against all markdown files in latest version of packages on pub.dev to
22
# see if any can provoke a crash
33

4-
name: package:markdown: crash tests
4+
name: "package:markdown: crash tests"
55

66
on:
7+
# Run on PRs and pushes to the default branch.
8+
push:
9+
branches: [ main ]
10+
paths:
11+
- '.github/workflows/markdown_crash_test.yaml'
12+
pull_request:
13+
branches: [ main ]
14+
paths:
15+
- '.github/workflows/markdown_crash_test.yaml'
716
schedule:
817
# “At 00:00 (UTC) on Sunday.”
918
- cron: '0 0 * * 0'
19+
workflow_dispatch:
1020

1121
defaults:
1222
run:

.github/workflows/markdown_flutter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Run a smoke test against package:flutter_markdown.
22

3-
name: package:markdown: flutter
3+
name: "package:markdown: flutter"
44

55
on:
66
# Run on PRs and pushes to the default branch.

0 commit comments

Comments
 (0)