Skip to content

Commit 7192013

Browse files
no message
1 parent 57b9dd4 commit 7192013

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/auto-request-review.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ jobs:
1818
run: |
1919
if [ "${{ github.event.pull_request.user.id }}" = '4849482' ]; then
2020
echo "run=false" >> $GITHUB_OUTPUT
21-
echo "::notice::Skipping auto-review request - repository owner PR"
21+
echo "::notice::Skipping auto request review - repository owner PR"
2222
else
2323
echo "run=true" >> $GITHUB_OUTPUT
24+
echo "::notice::Auto request review will execute - the PR author is not the repository owner"
2425
fi
2526
2627
auto-request-review:
2728
needs: should-run
2829
if: needs.should-run.outputs.run == 'true'
2930
runs-on: ubuntu-latest
30-
name: Auto Request Review
31+
name: Request a reviewer
3132
steps:
3233
- name: Request reviews based on configuration
3334
uses: necojackarc/auto-request-review@e89da1a8cd7c8c16d9de9c6e763290b6b0e3d424 # v0.13.0

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
echo "::notice::Skipping CI checks - release-please PR"
2222
else
2323
echo "run=true" >> $GITHUB_OUTPUT
24+
echo "::notice::CI checks will execute - the PR author is not the release-please bot"
2425
fi
2526
2627
tests:

.github/workflows/sloth.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
echo "::notice::Skipping Sloth - release-please PR"
2323
else
2424
echo "run=true" >> $GITHUB_OUTPUT
25+
echo "::notice::Sloth will execute - the PR author is not the release-please bot"
2526
fi
2627
2728
sloth:

0 commit comments

Comments
 (0)