File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ name: CI
3
3
on :
4
4
# Run on PRs and pushes to the default branch.
5
5
push :
6
- branches : [ master ]
6
+ branches : [ main ]
7
7
paths :
8
8
- ' specification/**'
9
9
- ' .github/workflows/ci.yml'
10
10
pull_request :
11
- branches : [ master ]
11
+ branches : [ main ]
12
12
paths :
13
13
- ' specification/**'
14
14
- ' .github/workflows/ci.yml'
19
19
if : |
20
20
(
21
21
(github.event_name == 'push'
22
- && github.ref == 'refs/heads/master '
22
+ && github.ref == 'refs/heads/main '
23
23
&& github.repository == 'dart-lang/language'
24
24
) ||
25
25
(github.event.pull_request.head.repo.full_name == github.repository)
28
28
steps :
29
29
- uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
30
30
- name : Install latex tools
31
- run : |
31
+ run : |
32
32
sudo apt-get update -qq
33
33
sudo apt-get install \
34
34
texlive-latex-base \
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Dart CI
2
2
3
3
on :
4
4
pull_request :
5
- branches : [master ]
5
+ branches : [main ]
6
6
push :
7
- branches : [master ]
7
+ branches : [main ]
8
8
9
9
env :
10
10
PUB_ENVIRONMENT : bot.github
You can’t perform that action at this time.
0 commit comments