From f12e11836202d4f51c873fce51278626ba4ad06e Mon Sep 17 00:00:00 2001 From: Hubert Date: Mon, 17 Oct 2022 18:19:47 +0200 Subject: [PATCH] misc meta (#11) --- .github/CODEOWNERS | 6 +++ .github/ISSUE_TEMPLATE/bug_report.md | 55 ++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/general_report.md | 20 +++++++++ .github/dependabot.yml | 16 +++++++ 4 files changed, 97 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/general_report.md create mode 100644 .github/dependabot.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..451be5d --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,6 @@ +# CODEOWNERS: https://help.github.com/articles/about-codeowners/ + +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# they will be requested for review when someone opens a pull request. +* @LesnyRumcajs diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..6ec32ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,55 @@ +--- +name: Bug report +about: Create a report to help us improve wakey! +title: '' +labels: 'Bug' +assignees: '' + +--- + +**Describe the bug** + + + + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Run '....' +3. See error + + + +**Log output** + +
+ Log Output + + ```Paste log output here + paste log output... + ``` +
+ + + +**Expected behaviour** + + + + +**Screenshots** + + + + +**Environment (please complete the following information):** + - OS: + - Rust version(e.g. `rustc --version`) + - Branch/commit + + + +**Other information and links** + + + diff --git a/.github/ISSUE_TEMPLATE/general_report.md b/.github/ISSUE_TEMPLATE/general_report.md new file mode 100644 index 0000000..c3a3a80 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general_report.md @@ -0,0 +1,20 @@ +--- +name: General issue +about: General purpose issue template +title: '' +labels: 'Status: Needs Triage' +assignees: '' + +--- + +**Issue summary** + + + + +**Other information and links** + + + + + diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..888fe1a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" # Location of package manifests + open-pull-requests-limit: 1 + schedule: + interval: "weekly" + # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions + - package-ecosystem: "github-actions" + directory: "/" + open-pull-requests-limit: 1 + schedule: + interval: "weekly"