We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54268b commit bd07c7fCopy full SHA for bd07c7f
.github/workflows/handle-release-pr-title-edit.yml
@@ -9,8 +9,9 @@ jobs:
9
update_pr_content:
10
name: Update pull request content
11
if: |
12
- (github.event.action == 'edited' && github.event.changes.title.from != github.event.pull_request.title) ||
13
- (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')) &&
14
+ startsWith(github.event.pull_request.head.ref, 'release-please--') &&
15
github.event.pull_request.state == 'open' &&
16
github.event.sender.login != 'stainless-bot' &&
17
github.repository == 'Finch-API/finch-api-python'
0 commit comments