Commit 61bc9bf 1 parent d137ca1 commit 61bc9bf Copy full SHA for 61bc9bf
File tree 6 files changed +13
-13
lines changed
6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Continuous Integration
3
3
" on " :
4
4
push :
5
5
branches :
6
- - master
6
+ - main
7
7
pull_request :
8
8
branches :
9
- - master
9
+ - main
10
10
schedule :
11
11
- cron : 38 11 * * 6
12
12
jobs :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: coverage
2
2
3
3
on :
4
4
push :
5
- branches : [master ]
5
+ branches : [main ]
6
6
7
7
jobs :
8
8
tarpaulin :
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ This repository provides the following Rust crates for data-encoding:
18
18
[ binary ] : https://crates.io/crates/data-encoding-bin
19
19
[ ci ] : https://github.com/ia0/data-encoding/actions/workflows/ci.yml
20
20
[ ci_badge ] : https://github.com/ia0/data-encoding/actions/workflows/ci.yml/badge.svg
21
- [ coveralls ] : https://coveralls.io/github/ia0/data-encoding?branch=master
22
- [ coveralls_badge ] : https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=master
21
+ [ coveralls ] : https://coveralls.io/github/ia0/data-encoding?branch=main
22
+ [ coveralls_badge ] : https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=main
23
23
[ documentation ] : https://docs.rs/data-encoding
24
24
[ documentation_badge ] : https://docs.rs/data-encoding/badge.svg
25
25
[ library ] : https://crates.io/crates/data-encoding
26
- [ license ] : https://github.com/ia0/data-encoding/blob/master /LICENSE
26
+ [ license ] : https://github.com/ia0/data-encoding/blob/main /LICENSE
27
27
[ license_badge ] : https://img.shields.io/crates/l/data-encoding.svg
28
28
[ macro ] : https://docs.rs/data-encoding-macro
29
29
[ version_badge ] : https://img.shields.io/crates/v/data-encoding.svg
Original file line number Diff line number Diff line change @@ -29,6 +29,6 @@ See the [documentation] for more details.
29
29
30
30
[ ci ] : https://github.com/ia0/data-encoding/actions/workflows/ci.yml
31
31
[ ci_badge ] : https://github.com/ia0/data-encoding/actions/workflows/ci.yml/badge.svg
32
- [ coveralls ] : https://coveralls.io/github/ia0/data-encoding?branch=master
33
- [ coveralls_badge ] : https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=master
32
+ [ coveralls ] : https://coveralls.io/github/ia0/data-encoding?branch=main
33
+ [ coveralls_badge ] : https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=main
34
34
[ documentation ] : https://docs.rs/data-encoding
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ CUR_STATUS="$(git status --porcelain)"
9
9
[ -z " $CUR_STATUS " ] || fail " Working directory is dirty."
10
10
11
11
CUR_BRANCH=" $( git symbolic-ref -q HEAD) "
12
- [ " $CUR_BRANCH " = refs/heads/master ] ||
13
- fail " Current branch is not master "
12
+ [ " $CUR_BRANCH " = refs/heads/main ] ||
13
+ fail " Current branch is not main "
14
14
15
15
CUR_COMMIT=" $( git rev-parse -q --verify HEAD) "
16
16
DOC_BRANCH=gh-pages
@@ -24,4 +24,4 @@ rm -r www
24
24
echo -n ' data-encoding.rs' > CNAME
25
25
git add .
26
26
git commit -qm" $CUR_COMMIT "
27
- git checkout -q master
27
+ git checkout -q main
Original file line number Diff line number Diff line change @@ -374,8 +374,8 @@ impl Flags {
374
374
let mut ci = Workflow {
375
375
name : "Continuous Integration" . to_owned ( ) ,
376
376
on : WorkflowOn {
377
- push : WorkflowEvents { branches : vec ! [ "master " . to_owned( ) ] } ,
378
- pull_request : WorkflowEvents { branches : vec ! [ "master " . to_owned( ) ] } ,
377
+ push : WorkflowEvents { branches : vec ! [ "main " . to_owned( ) ] } ,
378
+ pull_request : WorkflowEvents { branches : vec ! [ "main " . to_owned( ) ] } ,
379
379
schedule : vec ! [ WorkflowSchedule { cron: "38 11 * * 6" . to_owned( ) } ] ,
380
380
} ,
381
381
jobs : BTreeMap :: new ( ) ,
You can’t perform that action at this time.
0 commit comments