-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into is2-harmony
- Loading branch information
Showing
3 changed files
with
129 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: 🐞 Bug | ||
description: > | ||
A bug is an issue that differs from documentation or has unexpected behavior. | ||
title: "[BUG] {{ title }}" | ||
labels: | ||
- Bug | ||
- Needs Triage | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is this issue already tracked somewhere, or is this a new report? | ||
description: Check if a similar issue has already been reported before submitting a new one. | ||
options: | ||
- label: I've reviewed existing issues and couldn't find a duplicate for this problem. | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: | | ||
Steps to Reproduce | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Environment | ||
description: | | ||
Examples: | ||
- **OS**: Ubuntu 20.04 | ||
- **Python**: 3.11.2 | ||
value: | | ||
- OS: | ||
- Python: | ||
render: markdown | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional Context | ||
description: | | ||
Any additional information that might be helpful in resolving this issue, such as: | ||
- Error messages or stack traces | ||
- Relevant configuration files or code snippets | ||
Tip: You can attach files or images by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
on: | ||
# workflow_dispatch allows deploy preview by pushing button on GitHub | ||
workflow_dispatch: | ||
pull_request: | ||
branches: [main] | ||
|
||
name: Deploy Preview | ||
|
||
jobs: | ||
build-deploy-preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Render | ||
uses: quarto-dev/quarto-actions/render@v2 | ||
with: | ||
to: html | ||
|
||
- name: Deploy Preview to Netlify as preview | ||
id: netlify-deploy | ||
uses: nwtgck/actions-netlify@v3 | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: f5b7c499-8187-438d-949b-6e2db927f5c1 | ||
with: | ||
publish-dir: './_site' | ||
production-deploy: false | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
deploy-message: | ||
'Deploy from GHA: ${{ github.event.pull_request.title || github.event.head_commit.message }} (${{ github.sha }})' | ||
alias: deploy-preview-${{ github.event.number }} | ||
# these all default to 'true' | ||
enable-pull-request-comment: true | ||
enable-commit-comment: false | ||
enable-commit-status: true | ||
overwrites-pull-request-comment: false | ||
timeout-minutes: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters