From 910d5584dfdb5ef472bf873ec2e6109d43f6beda Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 23 Sep 2021 09:18:21 +0200 Subject: Remove section on patchmails as we accept PRs now. Signed-off-by: Matthias Beyer --- CONTRIBUTING.md | 32 ++------------------------------ 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d91a0b..109d6c0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,11 +5,8 @@ This file describes how you can contribute to butido. ## Reporting issues / Questions -If you have a question regarding butido, feel free to send an email to -one of the following addresses - -* "matthias.beyer@atos.net" -* or publicly to [the mailinglist]("~matthiasbeyer/butido@lists.sr.ht") +If you have a question regarding butido, feel free to open an issue or write an +email to the authors. ## Submitting patches @@ -57,28 +54,3 @@ By that you agree to the > this project or the open source license(s) involved. -You can submit patches using [git send-email](https://git-send-email.io/) -and send email to the above email addresses. - -For the lazy: - -``` -git format-patch \ - --subject-prefix=butido \ - --to="~matthiasbeyer/butido@lists.sr.ht" \ - --cc="matthias.beyer@atos.net" \ - --cover-letter \ - --numbered \ - --signoff \ - master..HEAD - -# Edit the cover letter -$EDITOR ./0000-cover-letter.patch - -# And send the patchset -git send-email \ - --no-chain-reply-to \ - --to="~matthiasbeyer/butido@lists.sr.ht" \ - --cc="matthias.beyer@atos.net" \ - ./0*patch -``` -- cgit v1.2.3 From 3ac15ba62949a7dcca8074a2718795d82e3d338e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 23 Sep 2021 09:21:03 +0200 Subject: Add COC Signed-off-by: Matthias Beyer --- CODE_OF_CONDUCT.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..e8576d0 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,5 @@ +# Code of Conduct + +We adhere to the same +[Code of Conduct as all Rust projects](https://www.rust-lang.org/policies/code-of-conduct). + -- cgit v1.2.3 From 845d1403efc79188c71f5e09fd128153f3f748e8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 23 Sep 2021 09:24:33 +0200 Subject: Rewrite PR template Signed-off-by: Matthias Beyer --- .github/PULL_REQUEST_TEMPLATE.md | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9d7b8d3..f626031 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,27 +1,13 @@ - -IMPORTANT NOTICE +What I did: -Github is only as mirror! Please send issues and pull requests via email to: -* [matthias.beyer@atos.net](mailto:matthias.beyer@atos.net) -* or publicly to [the butido mailinglist](mailto:~matthiasbeyer/butido@lists.sr.ht). +## Checklist +* [ ] all commits are `--signoff` ([Why?](/CONTRIBUTING.md)) +* [ ] No `!fixup` commits in the PR +* [ ] I ran `cargo check --all --tests` +* [ ] I ran `cargo test` +* [ ] I ran `cargo clippy` -To send patches (make sure to check the CONTRIBUTING.md file), for the lazy: - -``` -git format-patch --subject-prefix=butido \ - --to="~matthiasbeyer/butido@lists.sr.ht" \ - --to="matthias.beyer@atos.net" \ - --cover-letter \ - --numbered \ - --signoff \ - master..HEAD -``` - - -We might miss your PR here on github. Either way, we will probably reach out to -you via mail anyways. - ---> -- cgit v1.2.3 From 43d5db8039f5955a628c08412fbd7da74cc12015 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 23 Sep 2021 09:29:35 +0200 Subject: Add issue template Signed-off-by: Matthias Beyer --- .github/ISSUE_TEMPLATE.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..2c4ca9c --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,29 @@ + + +## What + +* [ ] Bug +* [ ] Feature Request +* [ ] Question +* [ ] Other + + +## Version + +**Butido Version:** +**Rust Version:** +**Postgres Version:** +**Docker Version:** +**OS I'm running on:** + + +For the lazy: + +```bash +butido --version +rustc --version +docker --version +uname -a +cat /etc/os-release +``` + -- cgit v1.2.3