From d2b68fbd58b3df09b455111a32109f941802183d Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 25 May 2024 14:58:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Add=20a=20workflow=20to=20auto?= =?UTF-8?q?=20tag=20when=20new=20version=20made?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-tag-pr.yml | 44 ------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/auto-tag-pr.yml diff --git a/.github/workflows/auto-tag-pr.yml b/.github/workflows/auto-tag-pr.yml deleted file mode 100644 index d3a575bd..00000000 --- a/.github/workflows/auto-tag-pr.yml +++ /dev/null @@ -1,44 +0,0 @@ -# Creates a new tag, whenever the app version (in package.json) is updated in master -# And marks any relevant issues as fixed -name: 🏗️ Release Tag new Versions -on: - push: - branches: - - master -jobs: - tag-pre-release: - runs-on: ubuntu-latest - permissions: - contents: write - outputs: - tag: ${{ steps.autotag.outputs.tagname }} - steps: - - uses: actions/checkout@v2 - - uses: butlerlogic/action-autotag@stable - id: autotag - with: - GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - strategy: package - commit_message_template: "🔖 {{number}} {{message}} (by {{author}})\nSHA: {{sha}}\n." - github-release: - runs-on: ubuntu-latest - needs: tag-pre-release - if: ${{ needs.tag-pre-release.outputs.tag }} - steps: - - uses: actions/checkout@v2 - - uses: ncipollo/release-action@v1 - env: - GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - with: - tag: ${{ needs.tag-pre-release.outputs.tag }} - bodyFile: ".github/LATEST_CHANGELOG.md" - mark-issue-fixed: - runs-on: ubuntu-latest - if: ${{ github.event_name == 'issues' }} - steps: - - uses: actions/checkout@v2 - - name: Label Fixed Issues - uses: gh-bot/fix-labeler@master - with: - token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} - label: '✅ Fixed'