diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index dd625cdd..00000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,52 +0,0 @@ -template: | - ## Deployment Status - - | Environment | Status | Deployment Date | URL | - |------------:|:------:|:---------------:|:----| - | Development | | | | - | Staging | | | | - | Production | | | | - - ### Test Status - - | Test Type | Status | Coverage | - |-------------------|:------:|:--------:| - | Unit tests (Jest) | | | - | Linter (ESLint) | | | - | Build | | | - - ## What's Changed - - ### Added - {{#changes added}} - * {{ this.title }} ({{ this.pullRequest.html_url }}) - {{/changes}} - - ### Changed - {{#changes changed}} - * {{ this.title }} ({{ this.pullRequest.html_url }}) - {{/changes}} - - ### Fixed - {{#changes fixed}} - * {{ this.title }} ({{ this.pullRequest.html_url }}) - {{/changes}} - - ### Security - {{#changes security}} - * {{ this.title }} ({{ this.pullRequest.html_url }}) - {{/changes}} - -categories: - - title: "Added" - label: "release:add" - description: "New features" - - title: "Changed" - label: "release:change" - description: "Code refactoring" - - title: "Fixed" - label: "release:fix" - description: "Bug fixes" - - title: "Security" - label: "release:security" - description: "Security improvements" diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index 67420c65..00000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Release Drafter - -on: - push: -# branches: -# - main - -jobs: - update_release_draft: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Draft release notes - uses: release-drafter/release-drafter@v5 - with: - config-name: release-drafter.yml - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}