From cf602ca78035bb33bf7eabee9658a711e4dab6b8 Mon Sep 17 00:00:00 2001 From: Kashish Mittal Date: Fri, 22 Nov 2024 10:59:31 -0500 Subject: [PATCH] exclude noop from verify changesets Signed-off-by: Kashish Mittal --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5790f8b7..92046b60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,7 @@ jobs: run: yarn tsc:full - name: Verify changesets - if: ${{ !(github.actor == 'rhdh-bot' || github.actor == 'github-actions[bot]') && matrix.workspace != 'repo-tools' }} + if: ${{ !(github.actor == 'rhdh-bot' || github.actor == 'github-actions[bot]') && matrix.workspace != 'repo-tools' && matrix.workspace != 'noop' }} run: | yarn changeset status --since=${{ github.event.pull_request.base.sha }}