From 62921b70988af24f712dfeff86f3ce46a54edbab Mon Sep 17 00:00:00 2001 From: Noob Zhang <17194552+zhanghua000@users.noreply.github.com> Date: Sun, 6 Aug 2023 00:03:42 +0800 Subject: [PATCH] doc: Add issue template and dependabot (github #1) * [skip ci] Add dependabot for updating depends automatically * Create bug-report.yaml * [skip ci]Update bug-report.yaml * [skip ci]Create feature-request.yaml * [skip ci]Update feature-request.yaml * Update .github/ISSUE_TEMPLATE/bug-report.yaml * format: remove trailing spaces --------- Co-authored-by: iffse <98851855+iffse@users.noreply.github.com> Co-authored-by: iff --- .github/ISSUE_TEMPLATE/bug-report.yaml | 30 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.yaml | 13 +++++++++ .github/dependabot.yaml | 10 +++++++ 3 files changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yaml create mode 100644 .github/dependabot.yaml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 0000000..1a3bf97 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,30 @@ +name: Bug Report +description: File a bug report +title: '[Bug]: ' +labels: + - bug +body: + - type: textarea + id: description + attributes: + label: What happened? + description: Please leave a brief description about the bug you file. + validations: + required: true + + - type: textarea + id: log + attributes: + label: The command and output + description: Please provide us the command and output you are running + validations: + required: true + + - type: checkboxes + id: no-similar-issue + attributes: + label: No similar issue + description: There is no similar issue found in the [issues](https://github.com/iffse/pay-respects/issues) + options: + - label: I have searched the issue list and there is no similar issue found + required: true diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml new file mode 100644 index 0000000..9df2736 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -0,0 +1,13 @@ +name: Feature Request +description: File a feature request +title: '[Feature Request]: ' +labels: + - feature-request +body: + - type: textarea + id: feature-request-content + attributes: + label: What do you want us to work on? + description: Please let us know what do you think + validations: + required: true diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..b3eb7c8 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + - package-ecosystem: cargo + directory: / + schedule: + interval: weekly