From be01b177faaf4c874f12a5609ecb43d1a279f86e Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 5 Aug 2022 03:59:05 +0200 Subject: [PATCH 1/3] Add badge. --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index f66267df3c..9e52f67869 100644 --- a/readme.md +++ b/readme.md @@ -150,6 +150,8 @@ I can always use your help [squashing bugs](https://docs.firefly-iii.org/support There is also a [security policy](https://github.com/firefly-iii/firefly-iii/security/policy). +[![CII Best Practices][bp-badge]][bp-url] + ### Support the development of Firefly III If you like Firefly III and if it helps you save lots of money, why not send me a dime for every dollar saved! :tada: @@ -192,3 +194,5 @@ The Firefly III logo is made by the excellent Cherie Woo. [sc-project-url]: https://sonarcloud.io/dashboard?id=firefly-iii_firefly-iii [hack-shield]: https://cdn.huntr.dev/huntr_security_badge_mono.svg [hack-url]: https://huntr.dev/bounties/disclose +[bp-badge]: https://bestpractices.coreinfrastructure.org/projects/6335/badge +[bp-url]: https://bestpractices.coreinfrastructure.org/projects/6335 From bba362fb582b23c4219319205a94657482c42cb3 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 6 Aug 2022 15:30:45 +0000 Subject: [PATCH 2/3] Create closed-issues.yml Add a new workflow for closed issues. --- .github/workflows/closed-issues.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/closed-issues.yml diff --git a/.github/workflows/closed-issues.yml b/.github/workflows/closed-issues.yml new file mode 100644 index 0000000000..540e4ff091 --- /dev/null +++ b/.github/workflows/closed-issues.yml @@ -0,0 +1,21 @@ +name: Reply to closed issue +on: + issues: + types: [closed] +jobs: + auto_comment: + runs-on: ubuntu-latest + steps: + - uses: aws-actions/closed-issue-message@v1 + with: + # These inputs are both required + repo-token: "${{ secrets.GITHUB_TOKEN }}" + message: | + Hi there! This is an automatic reply. `Share and enjoy` + + This issue is now closed. Please be aware that closed issues are not actively monitored. If you reply, you may get no response. + + - If the original bug is not actually fixed, please feel free to open a new ticket. Please refer to this issue for clarity. + - Follow-up questions can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/) + + Thank you for your consideration. From 4c0934bae86189111d3bd0a074cee6d62fbee219 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 6 Aug 2022 15:39:22 +0000 Subject: [PATCH 3/3] Update closed-issues.yml Small changes in yaml --- .github/workflows/closed-issues.yml | 43 +++++++++++++++-------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/.github/workflows/closed-issues.yml b/.github/workflows/closed-issues.yml index 540e4ff091..0a50158079 100644 --- a/.github/workflows/closed-issues.yml +++ b/.github/workflows/closed-issues.yml @@ -1,21 +1,22 @@ -name: Reply to closed issue -on: - issues: - types: [closed] -jobs: - auto_comment: - runs-on: ubuntu-latest - steps: - - uses: aws-actions/closed-issue-message@v1 - with: - # These inputs are both required - repo-token: "${{ secrets.GITHUB_TOKEN }}" - message: | - Hi there! This is an automatic reply. `Share and enjoy` - - This issue is now closed. Please be aware that closed issues are not actively monitored. If you reply, you may get no response. - - - If the original bug is not actually fixed, please feel free to open a new ticket. Please refer to this issue for clarity. - - Follow-up questions can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/) - - Thank you for your consideration. +name: "Reply to closed issue" +on: + issues: + types: + - closed +jobs: + auto_comment: + runs-on: ubuntu-latest + steps: + - + uses: aws-actions/closed-issue-message@v1 + with: + message: | + Hi there! This is an automatic reply. `Share and enjoy` + + This issue is now closed. Please be aware that closed issues are not actively monitored. If you reply, you may get no response. + + - If the original bug is not actually fixed, please feel free to open a new ticket. Please refer to this issue for clarity. + - Follow-up questions can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/) + + Thank you for your consideration. + repo-token: "${{ secrets.GITHUB_TOKEN }}"