Skip to content

Commit

Permalink
Merge branch 'main' into print-configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasge committed Oct 8, 2023
2 parents 14f11a1 + 38172f3 commit 6653625
Show file tree
Hide file tree
Showing 42 changed files with 911 additions and 327 deletions.
83 changes: 83 additions & 0 deletions .github/DISCUSSION_TEMPLATE/support.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
body:
- type: input
attributes:
label: Operating System
description: What operating system are you using?
placeholder: "Example: macOS Big Sur"
validations:
required: true

- type: input
attributes:
label: Shell
description: What shell are you using?
placeholder: "Example: zsh 5.8.1"
validations:
required: true

- type: dropdown
attributes:
label: Version
description: What version of atuin are you running?
multiple: false
options: # how often will I forget to update this? a lot.
- v16.0.0 (Default)
- v15.0.0
- v14.0.1
- v14.0.0
- v13.0.1
- v13.0.0
- v12.0.0
- v11.0.0
- v0.10.0
- v0.9.1
- v0.9.0
- v0.8.1
- v0.8.0
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.4
- v0.6.3
default: 0
validations:
required: true

- type: checkboxes
attributes:
label: Self hosted
description: Are you self hosting atuin server?
options:
- label: I am self hosting atuin server

- type: checkboxes
attributes:
label: Search the issues
description: Did you search the issues and discussions for your problem?
options:
- label: I checked that someone hasn't already asked about the same issue
required: true

- type: textarea
attributes:
label: Behaviour
description: "Please describe the issue - what you expected to happen, what actually happened"

- type: textarea
attributes:
label: Logs
description: "If possible, please include logs from atuin, especially if you self host the server - ATUIN_LOG=debug"

- type: textarea
attributes:
label: Extra information
description: "Anything else you'd like to add?"

- type: checkboxes
attributes:
label: Code of Conduct
description: The Code of Conduct helps create a safe space for everyone. We require
that everyone agrees to it.
options:
- label: I agree to follow this project's [Code of Conduct](https://github.com/atuinsh/atuin/blob/main/CODE_OF_CONDUCT.md)
required: true
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug report
about: Create a report to help us improve
about: Unless you are absolutely certain this is a bug, please open a post on the support forum first.
title: ''
labels: bug
assignees: ''
Expand Down
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# I think this was a little aggressive, but maybe enable if
# people ignore this.
# blank_issues_enabled: false
contact_links:
- name: Support
url: https://github.com/atuinsh/atuin/discussions/new?category=support
about: Get community help and support with Atuin here!
- name: Feature suggestion
url: https://github.com/atuinsh/atuin/discussions/new?category=ideas
about: Suggest an idea for Atuin
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
run: cargo build --all --locked --release && strip target/release/atuin

unit-test:
runs-on: [self-hosted, ARM64, macOS]
#runs-on: [self-hosted, ARM64, macOS]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 6653625

Please sign in to comment.