From 47d893b7b44b88b941332fd72e5acd45869bd8ae Mon Sep 17 00:00:00 2001 From: Ben Croker Date: Fri, 1 Nov 2024 16:36:20 +0100 Subject: [PATCH] Remove unnecessary files --- .github/ISSUE_TEMPLATE/bug-report.yaml | 42 --------------------- .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature-request.yaml | 25 ------------ .github/ISSUE_TEMPLATE/support-request.yaml | 23 ----------- .github/workflows/create-release.yml | 21 ----------- CHANGELOG.md | 5 --- 6 files changed, 117 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature-request.yaml delete mode 100644 .github/ISSUE_TEMPLATE/support-request.yaml delete mode 100644 .github/workflows/create-release.yml delete mode 100644 CHANGELOG.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml deleted file mode 100644 index f3b2cc2..0000000 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: Bug Report -description: Create a bug report for this plugin. -labels: - - bug -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to submit a bug report! To ensure this hasn’t already been reported, please first search existing issues and ensure you’re running the latest version. - - To rule out that this isn’t a setup or configuration issue, please read the docs. - - If you still believe you’ve found a bug, please provide a clear and concise description, including: - - What is happening and what you expected to happen. - - Steps to reproduce the issue. - - Screenshots, if applicable. - - type: textarea - id: body - attributes: - label: Bug Report - description: Please provide a clear and concise description of the bug. - validations: - required: true - - type: input - id: pluginVersion - attributes: - label: Plugin Version - description: Provide the plugin version that this relates to, ideally the latest version. - validations: - required: true - - type: input - id: craftVersion - attributes: - label: Craft CMS Version - description: Provide the version of Craft that is installed. - validations: - required: true - - type: input - id: phpVersion - attributes: - label: PHP Version - description: Provide the PHP version, if applicable. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml deleted file mode 100644 index 7a66507..0000000 --- a/.github/ISSUE_TEMPLATE/feature-request.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Feature Request -description: Suggest a new feature for this plugin. -labels: - - enhancement -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to submit a feature request! To ensure this isn’t already on our radar, please first search existing issues and ensure you’re running the latest version. - - If you still believe you have a new suggestion, please provide a clear and concise description, including: - - What problem you believe your feature request can solve. - - Any alternative solutions or features you have already considered. - - type: textarea - id: body - attributes: - label: Feature Request - description: Please provide a clear and concise suggestion for a feature. - validations: - required: true - - type: input - id: pluginVersion - attributes: - label: Plugin Version - description: Provide the plugin version that this relates to, ideally the latest version. diff --git a/.github/ISSUE_TEMPLATE/support-request.yaml b/.github/ISSUE_TEMPLATE/support-request.yaml deleted file mode 100644 index 87563aa..0000000 --- a/.github/ISSUE_TEMPLATE/support-request.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: Support Request -description: Ask a question about this plugin. -labels: - - question -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to submit a support request! To ensure your question hasn’t already been asked and answered, please first search existing issues and ensure you’re running the latest version. - - If your question is still unanswered, please provide a clear and concise description. Note that we are diligent about documentation, so please check whether your question is answered by the plugin docs before submitting. - - type: textarea - id: body - attributes: - label: Support Request - description: Please provide a clear and concise question. - validations: - required: true - - type: input - id: pluginVersion - attributes: - label: Plugin Version - description: Provide the plugin version that this relates to, ideally the latest version. diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml deleted file mode 100644 index 8e33492..0000000 --- a/.github/workflows/create-release.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Create Release -run-name: Create release for ${{ github.event.client_payload.version }} - -on: - repository_dispatch: - types: - - craftcms/new-release - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: ncipollo/release-action@v1 - with: - body: ${{ github.event.client_payload.notes }} - makeLatest: ${{ github.event.client_payload.latest }} - name: ${{ github.event.client_payload.version }} - prerelease: ${{ github.event.client_payload.prerelease }} - tag: ${{ github.event.client_payload.tag }} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 9b37969..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,5 +0,0 @@ -# Release Notes for Spark Plug - -## 1.0.0-alpha.1 - Unreleased - -- Initial alpha release.