Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update github bugreport and issue template #745

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
59 changes: 55 additions & 4 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,75 @@
name: Bug Report
about: Report a Bug
title: ''
labels: ''
labels: 'bug'
assignees: ''

---

### Affected Version
**paru -V**

<!-- get the version you're running via

paru -V

-->

```sh
**Include your version!**
```

### Checklist

- [ ] I have checked the open and already closed [issues](https://github.com/Morganamilo/paru/issues) for duplicates

### Description
**Have you checked previous issues?**



### Output


```console
**Include the FULL output of any relevant commands/configs**

**Don't cut parts of the input always include the FULL thing**
```

### Config-Files
#### Paru.conf

**paru.conf and pacman.conf are usually always relevant**
<!-- create the minimised dump of the used config file in the console via

{
if [ -n "$PARU_CONF" ] && [ -f "$PARU_CONF" ]; then
echo '=> paru uses $PARU_CONF config file: ' "$PARU_CONF"
cat "$PARU_CONF";
elif [ -n "$XDG_CONFIG_HOME" ] && [ -f "$XDG_CONFIG_HOME/paru/paru.conf" ]; then
echo '=> paru uses $XDG_CONFIG_HOME config file: ' "$XDG_CONFIG_HOME/paru/paru.conf"
cat "$XDG_CONFIG_HOME/paru/paru.conf"
elif [ -n "$HOME" ] && [ -f "$HOME/.config/paru/paru.conf" ]; then
echo '=> paru uses $XDG_CONFIG_HOME config file: ' "$XDG_CONFIG_HOME/paru/paru.conf"
cat "$XDG_CONFIG_HOME/paru/paru.conf"
else
echo '=> paru uses system-config file: /etc/paru.conf'
cat /etc/paru.conf
fi;
} | grep -v -E "^#|^$"

-->

```sh
**Include your paru.conf!**
```

#### Pacman.conf

<!-- create the minimised dump of the used config file in the console via

cat /etc/pacman.conf | grep -v -E "^#|^$"

-->

```sh
**Include your pacman.conf!**
```
59 changes: 55 additions & 4 deletions .github/ISSUE_TEMPLATE/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,75 @@
name: Issue
about: Report an Issue
title: ''
labels: ''
labels: 'help wanted'
assignees: ''

---

### Affected Version
**paru -V**

<!-- get the version you're running via

paru -V

-->

```sh
**Include your version!**
```

### Checklist

- [ ] I have checked the open and already closed [issues](https://github.com/Morganamilo/paru/issues) for duplicates

### Description
**Have you checked previous issues?**



### Output


```console
**Include the FULL output of any relevant commands/configs**

**Don't cut parts of the input always include the FULL thing**
```

### Config-Files
#### Paru.conf

**paru.conf and pacman.conf are usually always relevant**
<!-- create the minimised dump of the used config file in the console via

{
if [ -n "$PARU_CONF" ] && [ -f "$PARU_CONF" ]; then
echo '=> paru uses $PARU_CONF config file: ' "$PARU_CONF"
cat "$PARU_CONF";
elif [ -n "$XDG_CONFIG_HOME" ] && [ -f "$XDG_CONFIG_HOME/paru/paru.conf" ]; then
echo '=> paru uses $XDG_CONFIG_HOME config file: ' "$XDG_CONFIG_HOME/paru/paru.conf"
cat "$XDG_CONFIG_HOME/paru/paru.conf"
elif [ -n "$HOME" ] && [ -f "$HOME/.config/paru/paru.conf" ]; then
echo '=> paru uses $XDG_CONFIG_HOME config file: ' "$XDG_CONFIG_HOME/paru/paru.conf"
cat "$XDG_CONFIG_HOME/paru/paru.conf"
else
echo '=> paru uses system-config file: /etc/paru.conf'
cat /etc/paru.conf
fi;
} | grep -v -E "^#|^$"

-->

```sh
**Include your paru.conf!**
```

#### Pacman.conf

<!-- create the minimised dump of the used config file in the console via

cat /etc/pacman.conf | grep -v -E "^#|^$"

-->

```sh
**Include your pacman.conf!**
```