From d88f92d26c03126bfeb15643670fe6bd983b3a58 Mon Sep 17 00:00:00 2001 From: Waffle Date: Mon, 17 Aug 2020 18:10:03 +0300 Subject: [PATCH 1/2] make 'dev' default branch in docs --- CONTRIBUTING.md | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b81f9695..4587993e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,8 @@ # Contributing + Before contributing, please read [our code style](https://github.com/teloxide/teloxide/blob/master/CODE_STYLE.md) and [the license](https://github.com/teloxide/teloxide/blob/master/LICENSE). -To change the source code, fork the `master` branch of this repository and work inside your own branch. Then send us a PR into `master` branch and wait for the CI to check everything. However, you'd better check changes first locally: +To change the source code, fork the `dev` branch of this repository and work inside your own branch. Then send us a PR into `dev` branch and wait for the CI to check everything. However, you'd better check changes first locally: ``` cargo clippy --all --all-features --all-targets diff --git a/README.md b/README.md index 76c90ea8..9bafee33 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - + From 7cbbf4396611441ac877095d1562a547ee75d0ab Mon Sep 17 00:00:00 2001 From: Waffle Date: Mon, 17 Aug 2020 18:30:19 +0300 Subject: [PATCH 2/2] run CI for pull requests against dev --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2dfc583..a9a4c47a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: push: branches: [ master ] pull_request: - branches: [ master ] + branches: [ master, dev ] name: Continuous integration