diff --git a/.github/ISSUE_TEMPLATE/article_request.yml b/.github/ISSUE_TEMPLATE/article_request.yml new file mode 100644 index 0000000..a9e34aa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/article_request.yml @@ -0,0 +1,16 @@ +name: Article Request +description: Let us know about articles and sections you would like to see +labels: ["req: article"] +body: + - type: markdown + attributes: + value: | + Thank you for taking time to fill out this report! + - type: textarea + id: description + attributes: + label: What would you like to see added? + description: Please tell us about what article or section you think is missing. Please include images and links as appropriate, and tell us where you think the new content would best fit. + placeholder: Tell us what you would like to see! + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..7d6fea2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,45 @@ +name: Bug Report +description: Let us know about bugs! +labels: ["fix: bug"] +body: + - type: markdown + attributes: + value: | + Thank you for taking time to fill out this report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Please describe what happened. Screenshots and URLs of affected parts are welcome. + placeholder: Tell us what you see! + validations: + required: true + - type: textarea + id: what-should-happen + attributes: + label: What should happen instead? + description: Please describe what should have happened. + placeholder: Tell us what you see! + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Microsoft Edge + - type: dropdown + id: devices + attributes: + label: What devices are you seeing the problem on? + multiple: true + options: + - Windows + - MacOS + - Linux + - Android + - iOS diff --git a/.github/ISSUE_TEMPLATE/inaccuracy_report.yml b/.github/ISSUE_TEMPLATE/inaccuracy_report.yml new file mode 100644 index 0000000..894aae9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/inaccuracy_report.yml @@ -0,0 +1,24 @@ +name: Inaccuracy Report +description: Let us know about inaccurate or outdated information +labels: ["fix: inaccuracy"] +body: + - type: markdown + attributes: + value: | + Thank you for taking time to fill out this report! + - type: textarea + id: description + attributes: + label: What is inaccurate? + description: Please describe the inaccuracy. If you can, please tell us what would be an accurate replacement. + placeholder: Tell us what you see! + validations: + required: true + - type: textarea + id: url + attributes: + label: Where is the inaccuracy? + description: Please paste a link to the affected section. + placeholder: Tell us where it is! + validations: + required: true diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..bacaf3c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,19 @@ +# Pull Request + + + +## Overview + + + +## Proposed Changes + + + +## Related Issues + + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e60d06d..126b77b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: - main jobs: deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - name: Install environment - uses: mamba-org/provision-with-micromamba@main + uses: mamba-org/setup-micromamba@v1 with: environment-file: build_env.yml environment-name: build