Skip to content

Commit 5ded437

Browse files
no message
1 parent b859916 commit 5ded437

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Skip for repository owner
1717
id: check
1818
run: |
19-
if [ "${{ github.event.pull_request.user.id == '4849482' }}" == "true" ]; then
19+
if [ "${{ github.event.pull_request.user.id }}" == '4849482' ]; then
2020
echo "run=false" >> $GITHUB_OUTPUT
2121
echo "::notice::Skipping auto-review request - repository owner PR"
2222
else

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Skip for release-please
1717
id: check
1818
run: |
19-
if [ "${{ github.event.pull_request.user.id == '41898282' }}" == "true" ]; then
19+
if [ "${{ github.event.pull_request.user.id }}" == '41898282' ]; then
2020
echo "run=false" >> $GITHUB_OUTPUT
2121
echo "::notice::Skipping CI checks - release-please PR"
2222
else

.github/workflows/sloth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Skip for release-please
1818
id: check
1919
run: |
20-
if [ "${{ github.event.pull_request.user.id == '41898282' }}" == "true" ]; then
20+
if [ "${{ github.event.pull_request.user.id }}" == '41898282' ]; then
2121
echo "run=false" >> $GITHUB_OUTPUT
2222
echo "::notice::Skipping Sloth - release-please PR"
2323
else

0 commit comments

Comments
 (0)