From 0e3dce28e1f3222f585f359509bf280ff473bca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Fri, 11 Mar 2022 14:59:32 +0100 Subject: [PATCH 1/4] [DOCS] Use develop branch for code coverage badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 150fbd9f..d4ee8e59 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # TYPO3 extension `form_consent` -[![Coverage](https://codecov.io/gh/eliashaeussler/typo3-form-consent/branch/main/graph/badge.svg?token=PQ0101QE3S)](https://codecov.io/gh/eliashaeussler/typo3-form-consent) +[![Coverage](https://codecov.io/gh/eliashaeussler/typo3-form-consent/branch/develop/graph/badge.svg?token=PQ0101QE3S)](https://codecov.io/gh/eliashaeussler/typo3-form-consent) [![Maintainability](https://api.codeclimate.com/v1/badges/c88c6c0bbc31c02153ef/maintainability)](https://codeclimate.com/github/eliashaeussler/typo3-form-consent/maintainability) [![Tests](https://github.com/eliashaeussler/typo3-form-consent/actions/workflows/tests.yaml/badge.svg)](https://github.com/eliashaeussler/typo3-form-consent/actions/workflows/tests.yaml) [![CGL](https://github.com/eliashaeussler/typo3-form-consent/actions/workflows/cgl.yaml/badge.svg)](https://github.com/eliashaeussler/typo3-form-consent/actions/workflows/cgl.yaml) From 7456b311dd1ab0fc8a0a1d5e757a7012092713c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Fri, 11 Mar 2022 15:01:34 +0100 Subject: [PATCH 2/4] [BUGFIX] Fix multiline configuration in issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- .github/ISSUE_TEMPLATE/feature_request.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d5d33c94..c7fbda41 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -71,7 +71,7 @@ body: id: terms attributes: label: Code of Conduct - description: | + description: > By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/eliashaeussler/typo3-form-consent/blob/main/.github/CODE_OF_CONDUCT.md). options: @@ -79,7 +79,7 @@ body: required: true - type: markdown attributes: - value: | + value: > :bulb: **Tip:** Have you already looked into our [Slack channel](https://typo3.slack.com/archives/C03719PJJJD)? Maybe your problem has already been discussed there. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index aba15d2e..50e37dc6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -22,7 +22,7 @@ body: - type: textarea attributes: label: Describe alternatives you've considered - description: | + description: > A clear and concise description of any alternative solutions or features you've considered. - type: textarea @@ -33,7 +33,7 @@ body: id: terms attributes: label: Code of Conduct - description: | + description: > By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/eliashaeussler/typo3-form-consent/blob/main/.github/CODE_OF_CONDUCT.md). options: @@ -41,7 +41,7 @@ body: required: true - type: markdown attributes: - value: | + value: > :bulb: **Tip:** Have you already looked into our [Slack channel](https://typo3.slack.com/archives/C03719PJJJD)? Maybe your problem has already been discussed there. From 8e26f836d7f7ecdfd5ae3767b8819b6667fb2a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Fri, 11 Mar 2022 15:02:40 +0100 Subject: [PATCH 3/4] [BUGFIX] Generate code quality reports on push as well --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5e127fa4..445ef13c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -55,7 +55,7 @@ jobs: - name: Fix coverage path working-directory: .Build/log/coverage run: sed -i 's#/var/www/html#${{ github.workspace }}#g' clover.xml - if: ${{ matrix.coverage && github.event_name == 'pull_request' }} + if: ${{ matrix.coverage }} - name: CodeClimate report uses: paambaati/codeclimate-action@v3.0.0 env: @@ -63,14 +63,14 @@ jobs: with: coverageLocations: | ${{ github.workspace }}/.Build/log/coverage/clover.xml:clover - if: ${{ matrix.coverage && github.event_name == 'pull_request' }} + if: ${{ matrix.coverage }} - name: codecov report uses: codecov/codecov-action@v2 with: directory: .Build/log/coverage fail_ci_if_error: true verbose: true - if: ${{ matrix.coverage && github.event_name == 'pull_request' }} + if: ${{ matrix.coverage }} # Save acceptance reports - uses: actions/upload-artifact@v3 From 549eff501f02fa7b6d510f3ade7ff1720ae3012f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Fri, 11 Mar 2022 15:19:22 +0100 Subject: [PATCH 4/4] [RELEASE] Release of EXT:form_consent 0.3.1 --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index 46eb738c..24cbddc4 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -28,7 +28,7 @@ 'author_email' => 'elias@haeussler.dev', 'state' => 'beta', 'clearCacheOnLoad' => false, - 'version' => '0.3.0', + 'version' => '0.3.1', 'constraints' => [ 'depends' => [ 'typo3' => '10.4.11-11.5.99',