name: 🎉 Release Commit on: workflow_dispatch: pull_request: types: [closed] concurrency: cancel-in-progress: true group: "${{ github.workflow }}-${{ github.ref_name }}-${{ startsWith(github.event.head_commit.message, 'chore(release): ') && 'release' || 'commit' }}" jobs: yarn-release: if: "${{ !startsWith(github.event.head_commit.message, 'chore(release): ') }}" runs-on: ubuntu-latest name: create release using commit-and-tag-version steps: - uses: actions/checkout@v4 with: token: ${{ secrets.M8A_ORG_BOT_REPO_TOKEN }} - run: yarn - name: Run release env: GIT_AUTHOR_EMAIL: bot@devthefuture.org GIT_AUTHOR_NAME: forgejo-actions GIT_COMMITTER_EMAIL: bot@devthefuture.org GIT_COMMITTER_NAME: forgejo-actions run: yarn release - name: Push release shell: bash run: | git push --follow-tags origin main