From e01856f6923a35973ba237145cfee08a11ccaac4 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Wed, 3 Apr 2024 11:24:31 -0500 Subject: [PATCH] Removed label workflow. --- .github/workflows/label.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml deleted file mode 100644 index 0004537559..0000000000 --- a/.github/workflows/label.yml +++ /dev/null @@ -1,34 +0,0 @@ -# .github/workflows/release.yml -name: Release - -on: - pull_request: - types: [closed] - -jobs: - build: - runs-on: ubuntu-latest - permissions: write-all - if: github.event.pull_request.merged - steps: - - name: Get Next Release - id: tag - uses: K-Phoen/semver-release-action@master - with: - release_strategy: none - release_branch: main - tag_format: "%major%.%minor%.%patch%" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: echo 'Creating new release for ' ${{ steps.tag.outputs.tag }} - - name: Create Release - if: ${{ steps.tag.outputs.tag }} - uses: ncipollo/release-action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - name: ${{ steps.tag.outputs.tag }} - tag: ${{ steps.tag.outputs.tag }} - commit: ${{ github.sha }} - generateReleaseNotes: true - makeLatest: true