diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 90eb9626df..5555ab1753 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,4 +1,4 @@ -name: Bug Report +name: Bug report description: Report a bug in Firefly III (or associated tools) body: - type: checkboxes @@ -12,7 +12,7 @@ body: - type: checkboxes attributes: label: I've found a bug and checked that ... - description: Make sure that your request fulfills all of the following requirements. If one requirement cannot be satisfied, explain in detail why. + description: Make sure that your request fulfills all of the following requirements. If one requirement cannot be satisfied, please explain why. options: - label: ... [the documentation](https://docs.firefly-iii.org/) does not mention anything about my problem - label: ... there are no open or closed issues that are related to my problem @@ -33,13 +33,6 @@ body: validations: required: true - - type: textarea - attributes: - label: Expected behaviour - description: Please describe precisely what you'd expect to happen. Be specific. - validations: - required: false - - type: textarea attributes: label: Steps to reproduce @@ -54,4 +47,4 @@ body: - type: textarea attributes: label: Additional info - description: Please provide any additional information that seem useful. + description: Please provide any additional information that seems useful. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 16429d7fa1..360fd63fc8 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,3 +3,6 @@ contact_links: - name: Ask a question url: https://github.com/firefly-iii/firefly-iii/discussions about: Please ask and answer questions here. + - name: I need support! + url: https://github.com/firefly-iii/firefly-iii/discussions + about: I think I broke something... diff --git a/.github/ISSUE_TEMPLATE/fr.yml b/.github/ISSUE_TEMPLATE/fr.yml index d14c5249bd..981c804857 100644 --- a/.github/ISSUE_TEMPLATE/fr.yml +++ b/.github/ISSUE_TEMPLATE/fr.yml @@ -1,4 +1,4 @@ -name: Feature Request +name: Feature request description: Request a feature or enhancement in Firefly III (or associated tools) body: - type: checkboxes @@ -31,11 +31,6 @@ body: validations: required: true - - type: textarea - attributes: - label: What are alternatives? - description: Please describe what alternatives currently exist. - - type: textarea attributes: label: Additional context diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 36c9db8421..bf25b6bc84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -279,10 +279,20 @@ jobs: if [[ "develop" != "$version" ]] && [[ "$version" != branch* ]] && [[ "$version" != *alpha* ]] && [[ "$version" != *beta* ]]; then echo 'Describe the latest release' sudo chown -R runner:docker output.txt + + # the changelog is in output.txt + mv output.txt output2.txt + touch output.txt echo '' >> output.txt echo "Welcome to release $version of Firefly III. It contains the the latest fixes, translations and features. Docker users can find this release under the \`latest\` tag." >> output.txt echo '' >> output.txt + + # add changelog to file. + cat output2.txt >> output.txt + echo '' >> output.txt + rm -f output2.txt + echo '### Instructions' >> output.txt echo '' >> output.txt echo "* Installation instructions for [Docker](https://docs.firefly-iii.org/how-to/firefly-iii/installation/docker/), [Portainer](https://docs.firefly-iii.org/how-to/firefly-iii/installation/portainer/), [Kubernetes](https://docs.firefly-iii.org/how-to/firefly-iii/installation/kubernetes/) or [self-managed servers](https://docs.firefly-iii.org/how-to/firefly-iii/installation/self-managed/)" >> output.txt