From 853be505063533bae8c3f30bc68dcdc77717c3b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksa=20Siri=C5=A1ki?= <31509435+aleksasiriski@users.noreply.github.com> Date: Fri, 2 Feb 2024 22:08:13 +0100 Subject: [PATCH] ci: remove semantic release --- .github/workflows/release.yaml | 39 ---------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 13e60c8..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,39 +0,0 @@ -name: Release - -on: - pull_request: - branches: ["main"] - types: ["closed"] - paths-ignore: - - ".github" - - ".gitignore" - - ".pre-commit-config.yaml" - - "commitlint.config.js" - -jobs: - release: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - issues: write - - # Skip running release workflow on forks - if: github.event.pull_request.merged == true && github.repository_owner == 'tminaorg' - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - persist-credentials: false - - - uses: cycjimmy/semantic-release-action@v4 - env: - GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }} - with: - ci: false # required to allow running on PR merged instead of push to main - branches: | - ["main"] - tag_format: ${version} - extra_plugins: | - @semantic-release/changelog@6.0.0 - @semantic-release/git@10.0.0