Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/article_request.yml
Original file line number Diff line number Diff line change
@@ -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
45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -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
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/inaccuracy_report.yml
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Pull Request

<!-- PLEASE READ THE COMMENTS BELOW -->

## Overview

<!-- Briefly summarize the proposed changes -->

## Proposed Changes

<!-- Provide specific details of what is changing -->

## Related Issues

<!--
Examples:
Fixes #123
Related to #101
-->
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
- main
jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
with:
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
Expand Down