From 473cd4f015ad20fbfb40bc3de86d47c42529fe9e Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 23 Oct 2024 10:39:28 +0100 Subject: [PATCH] test --- .github/workflows/on-pr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index d11f7df1..6c9dc977 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -31,10 +31,11 @@ jobs: release-comment: name: Release Comment runs-on: ubuntu-latest - if: ${{ contains(github.event.pull_request.title, 'release zeta-icons') }} && ${{ contains(github.event.pull_request.title, 'chore(main)') }} + if: ${{ contains(github.event.pull_request.title, 'release zeta-icons') }} && ${{ startsWith(github.event.pull_request.title, 'chore(main)') }} steps: + - name: Checkout + uses: actions/checkout@v4 - name: Get lastUpdated - if: lastUpdated run: echo "lastUpdated=$(cat package.json | jq .lastUpdated)" >> $GITHUB_OUTPUT - name: Comment uses: mikedloss/create-update-comment@v1