Skip to content

Commit 6ec5cfb

Browse files
committed
fix(IDX): update bot check workflow
1 parent e9673dd commit 6ec5cfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/check_is_bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Dont run this workflow on merge queue
1616
if: ${{ github.event_name != 'merge_group' }}
1717
outputs:
18-
is_member: ${{ steps.check-is-bot.outputs.is_bot}}
18+
is_bot: ${{ steps.check-is-bot.outputs.is_bot}}
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v4

.github/workflows/repo_policies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Check Bot Policies
1414
runs-on: ubuntu-latest
1515
needs: check-is-bot
16-
if: ${{ needs.check-is-bot.outputs.is_bot == 'true' && needs.check-is-bot.result == 'success' }}
16+
if: ${{ needs.check-is-bot.outputs.is_bot != 'false' }}
1717
steps:
1818
# First check out code from public-workflows
1919
- name: Checkout

0 commit comments

Comments
 (0)