Skip to content

Commit 3f84e33

Browse files
authored
fix(workflows): ignore auto title for renovate PRs
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
1 parent 923c422 commit 3f84e33

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/update-stable-titles.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414

1515
jobs:
1616
update-pr-title:
17+
if: github.event.pull_request.user.login != 'renovate[bot]'
1718
runs-on: ubuntu-latest-low
1819
permissions:
1920
pull-requests: write
@@ -24,6 +25,8 @@ jobs:
2425
run: sleep 15
2526

2627
- name: Get PR details and update title
28+
# Renovate already have ùatching branch in the title
29+
if: github.event.pull_request.user.login != 'renovate[bot]'
2730
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2831
with:
2932
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)