File tree 5 files changed +13
-13
lines changed
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -3,18 +3,18 @@ name: documentation
3
3
on :
4
4
workflow_dispatch :
5
5
# Trigger the workflow on push or pull request,
6
- # but only for the master branch
6
+ # but only for the main branch
7
7
push :
8
8
branches :
9
- - master
9
+ - main
10
10
paths :
11
11
- docs/**
12
12
- fluent.*/docs/**
13
13
- fluent.*/fluent/**
14
14
- fluent.*/setup.cfg
15
15
pull_request :
16
16
branches :
17
- - master
17
+ - main
18
18
paths :
19
19
- docs/**
20
20
- fluent.*/docs/**
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: integrations
2
2
3
3
on :
4
4
# Trigger the workflow on push or pull request,
5
- # but only for the master branch
5
+ # but only for the main branch
6
6
push :
7
7
branches :
8
- - master
8
+ - main
9
9
paths :
10
10
- .github/workflows/fluent.integration.yml
11
11
- " fluent.syntax/**"
14
14
- " !fluent.runtime/docs/**"
15
15
pull_request :
16
16
branches :
17
- - master
17
+ - main
18
18
paths :
19
19
- .github/workflows/fluent.integration.yml
20
20
- " fluent.syntax/**"
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ name: fluent.runtime
2
2
3
3
on :
4
4
# Trigger the workflow on push or pull request,
5
- # but only for the master branch
5
+ # but only for the main branch
6
6
push :
7
7
branches :
8
- - master
8
+ - main
9
9
paths :
10
10
- .github/workflows/fluent.runtime.yml
11
11
- " fluent.runtime/**"
12
12
- " !fluent.runtime/docs/**"
13
13
pull_request :
14
14
branches :
15
- - master
15
+ - main
16
16
paths :
17
17
- .github/workflows/fluent.runtime.yml
18
18
- " fluent.runtime/**"
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ name: fluent.syntax
2
2
3
3
on :
4
4
# Trigger the workflow on push or pull request,
5
- # but only for the master branch
5
+ # but only for the main branch
6
6
push :
7
7
branches :
8
- - master
8
+ - main
9
9
paths :
10
10
- .github/workflows/fluent.syntax.yml
11
11
- " fluent.syntax/**"
12
12
- " !fluent.syntax/docs/**"
13
13
pull_request :
14
14
branches :
15
- - master
15
+ - main
16
16
paths :
17
17
- .github/workflows/fluent.syntax.yml
18
18
- " fluent.syntax/**"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ can surf it locally via ``python3 -m http.server `` in ``_build``.
9
9
10
10
The documentation is created for each tagged version after May 2020,
11
11
at which point we had good docs. The current branch (PR tips or
12
- master ) is versioned as *dev *, and *stable * is a symlink to the latest
12
+ main ) is versioned as *dev *, and *stable * is a symlink to the latest
13
13
release. The releases are in a dir with their corresponding version number.
14
14
15
15
When cutting a new release, manually run the documentation workflow
You can’t perform that action at this time.
0 commit comments