From 05b5f7d9c3757ba903e3f2afe57283a92017580a Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Mon, 2 Oct 2023 10:59:06 +0000 Subject: [PATCH] ci: only run workflow handle-release-pr-title-edit for release PRs --- .github/workflows/handle-release-pr-title-edit.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/handle-release-pr-title-edit.yml b/.github/workflows/handle-release-pr-title-edit.yml index f5b782e..58495ad 100644 --- a/.github/workflows/handle-release-pr-title-edit.yml +++ b/.github/workflows/handle-release-pr-title-edit.yml @@ -9,8 +9,9 @@ jobs: update_pr_content: name: Update pull request content if: | - (github.event.action == 'edited' && github.event.changes.title.from != github.event.pull_request.title) || - (github.event.action == 'unlabeled' && github.event.label.name == 'autorelease: custom version') && + ((github.event.action == 'edited' && github.event.changes.title.from != github.event.pull_request.title) || + (github.event.action == 'unlabeled' && github.event.label.name == 'autorelease: custom version')) && + startsWith(github.event.pull_request.head.ref, 'release-please--') && github.event.pull_request.state == 'open' && github.event.sender.login != 'stainless-bot' && github.repository == 'lithic-com/lithic-go'