Skip to content

Commit 3b28186

Browse files
committed
default branch was renamed from master to main
1 parent bd0c38d commit 3b28186

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Thanks for contributing to DoubleML.
2-
Before submitting a PR, please take a look at our [contribution guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md).
2+
Before submitting a PR, please take a look at our [contribution guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md).
33
Additionally, please fill out the PR checklist below.
44

55
### Description
@@ -14,11 +14,11 @@ Here you can add further comments.
1414
You can also delete this section, if it is not necessary.
1515

1616
### PR Checklist
17-
Please fill out this PR checklist (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
17+
Please fill out this PR checklist (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
1818

1919
- [ ] The title of the pull request summarizes the changes made.
2020
- [ ] The PR contains a detailed description of all changes and additions.
2121
- [ ] References to related issues or PRs are added.
22-
- [ ] The code passes `R CMD check` and all (unit) tests (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
22+
- [ ] The code passes `R CMD check` and all (unit) tests (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
2323
- [ ] Enhancements or new feature are equipped with unit tests.
24-
- [ ] The changes adhere to the "mlr-style" standards (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
24+
- [ ] The changes adhere to the "mlr-style" standards (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).

.github/workflows/check_styler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ name: Check style guidelines
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88
pull_request:
99
branches:
10-
- master
10+
- main
1111
schedule:
1212
- cron: "0 9 * * 1,3,5"
1313
workflow_dispatch:

.github/workflows/deploy_docu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: CI deploy documentation
55
on:
66
push:
77
branches:
8-
- master
8+
- main
99
workflow_dispatch:
1010
release:
1111
types:
@@ -80,7 +80,7 @@ jobs:
8080
uses: JamesIves/github-pages-deploy-action@3.7.1
8181
with:
8282
REPOSITORY_NAME: DoubleML/doubleml.github.io
83-
BRANCH: master
83+
BRANCH: main
8484
FOLDER: docs/dev
8585
TARGET_FOLDER: r/dev
8686
GIT_CONFIG_NAME: DoubleML Deploy Bot
@@ -96,7 +96,7 @@ jobs:
9696
uses: JamesIves/github-pages-deploy-action@3.7.1
9797
with:
9898
REPOSITORY_NAME: DoubleML/doubleml.github.io
99-
BRANCH: master
99+
BRANCH: main
100100
FOLDER: docs/dev
101101
TARGET_FOLDER: r/${{env.RELEASE_VERSION}}
102102
GIT_CONFIG_NAME: DoubleML Deploy Bot
@@ -109,7 +109,7 @@ jobs:
109109
uses: JamesIves/github-pages-deploy-action@3.7.1
110110
with:
111111
REPOSITORY_NAME: DoubleML/doubleml.github.io
112-
BRANCH: master
112+
BRANCH: main
113113
FOLDER: docs/dev
114114
TARGET_FOLDER: r/stable
115115
GIT_CONFIG_NAME: DoubleML Deploy Bot

.github/workflows/rcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ name: build
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88
pull_request:
99
branches:
10-
- master
10+
- main
1111
schedule:
1212
- cron: "0 9 * * 1,3,5"
1313
workflow_dispatch:

README.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ output: github_document
88

99

1010
[![build](https://github.com/DoubleML/doubleml-for-r/workflows/build/badge.svg)](https://github.com/DoubleML/doubleml-for-r/actions?query=workflow%3Abuild)
11-
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-r/branch/master/graph/badge.svg?token=C5aiyo2MVL)](https://app.codecov.io/gh/DoubleML/doubleml-for-r/)
11+
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-r/branch/main/graph/badge.svg?token=C5aiyo2MVL)](https://app.codecov.io/gh/DoubleML/doubleml-for-r/)
1212
[![CodeFactor](https://www.codefactor.io/repository/github/doubleml/doubleml-for-r/badge)](https://www.codefactor.io/repository/github/doubleml/doubleml-for-r)
1313
[![CRAN Version](https://www.r-pkg.org/badges/version/DoubleML)](https://cran.r-project.org/package=DoubleML)
1414

@@ -84,9 +84,9 @@ remotes::install_github("DoubleML/doubleml-for-r")
8484
DoubleML is a community effort.
8585
Everyone is welcome to contribute.
8686
To get started for your first contribution we recommend reading our
87-
[contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md)
87+
[contributing guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md)
8888
and our
89-
[code of conduct](https://github.com/DoubleML/doubleml-for-r/blob/master/CODE_OF_CONDUCT.md).
89+
[code of conduct](https://github.com/DoubleML/doubleml-for-r/blob/main/CODE_OF_CONDUCT.md).
9090

9191
## Citation
9292

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# DoubleML - Double Machine Learning in R <a href="https://docs.doubleml.org"><img src="man/figures/logo.png" align="right" width = "120" /></a>
55

66
[![build](https://github.com/DoubleML/doubleml-for-r/workflows/build/badge.svg)](https://github.com/DoubleML/doubleml-for-r/actions?query=workflow%3Abuild)
7-
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-r/branch/master/graph/badge.svg?token=C5aiyo2MVL)](https://app.codecov.io/gh/DoubleML/doubleml-for-r/)
7+
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-r/branch/main/graph/badge.svg?token=C5aiyo2MVL)](https://app.codecov.io/gh/DoubleML/doubleml-for-r/)
88
[![CodeFactor](https://www.codefactor.io/repository/github/doubleml/doubleml-for-r/badge)](https://www.codefactor.io/repository/github/doubleml/doubleml-for-r)
99
[![CRAN
1010
Version](https://www.r-pkg.org/badges/version/DoubleML)](https://cran.r-project.org/package=DoubleML)
@@ -106,9 +106,9 @@ remotes::install_github("DoubleML/doubleml-for-r")
106106
DoubleML is a community effort. Everyone is welcome to contribute. To
107107
get started for your first contribution we recommend reading our
108108
[contributing
109-
guidelines](https://github.com/DoubleML/doubleml-for-r/blob/master/CONTRIBUTING.md)
109+
guidelines](https://github.com/DoubleML/doubleml-for-r/blob/main/CONTRIBUTING.md)
110110
and our [code of
111-
conduct](https://github.com/DoubleML/doubleml-for-r/blob/master/CODE_OF_CONDUCT.md).
111+
conduct](https://github.com/DoubleML/doubleml-for-r/blob/main/CODE_OF_CONDUCT.md).
112112

113113
## Citation
114114

0 commit comments

Comments
 (0)