Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/breaking-change-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
env.PROTECTED_BRANCH != env.RELEASE_BRANCH &&
steps.breaking.outputs.breaking == 'true' &&
github.event.pull_request.base.ref == env.PROTECTED_BRANCH
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
with:
header: breaking-change-to-main
message: |
Expand All @@ -73,7 +73,7 @@ jobs:

# only make it to this point if we have not failed above
- name: Delete comment when fixed
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
with:
header: breaking-change-to-main
delete: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Require "BREAKING CHANGE:" footer for breaking changes
id: breaking-comment
if: ${{ github.event_name == 'pull_request_target' && steps.breaking.outputs.breaking == 'true' && steps.breaking.outputs.has_breaking_footer == 'false' }}
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
with:
header: pr-title-lint-error
message: |
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Post comment if the PR is an RFC
id: rfc-tag-comment
if: always() && (github.event_name == 'pull_request_target') && (steps.rfc-tag.outputs.rfc == 'true')
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
with:
header: pr-title-lint-error
message: |
Expand All @@ -169,7 +169,7 @@ jobs:
run: exit 1

- name: Post a comment if the PR badly formatted
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
# When the previous steps fails, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always() && github.event_name == 'pull_request_target' && (steps.lint_pr_title.outputs.error_message != null)
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
# Delete previous comments when the issues have been resolved
# This step doesn't run if any of the previous checks fails.
- name: Delete previous comments
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
if: github.event_name == 'pull_request_target'
with:
header: pr-title-lint-error
Expand Down
Loading