diff --git a/.github/workflows/auto-tag-pr.yml b/.github/workflows/auto-tag-pr.yml index e05948eb..7ba98c96 100644 --- a/.github/workflows/auto-tag-pr.yml +++ b/.github/workflows/auto-tag-pr.yml @@ -1,16 +1,27 @@ # Creates a new tag, whenever the app version (in package.json) is updated in master -name: 🏗️ Create Tag on Version Change +# And marks any relevant issues as fixed +name: 🏗️ Release Tag new Versions on: push: branches: - master jobs: - build: + tag-pre-release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: butlerlogic/action-autotag@stable with: - GITHUB_TOKEN: '${{ secrets.BOT_GITHUB_TOKEN }}' + GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} strategy: package commit_message_template: "🔖 {{number}} {{message}} (by {{author}})\nSHA: {{sha}}\n." + mark-issue-fixed: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: butlerlogic/action-autotag@stable + - name: Label Fixed Issues + uses: gh-bot/fix-labeler@master + with: + token: ${{ secrets.BOT_GITHUB_TOKEN }} + label: '✅ Fixed' \ No newline at end of file