We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9673dd commit 6ec5cfbCopy full SHA for 6ec5cfb
.github/workflows/check_is_bot.yml
@@ -15,7 +15,7 @@ jobs:
15
# Dont run this workflow on merge queue
16
if: ${{ github.event_name != 'merge_group' }}
17
outputs:
18
- is_member: ${{ steps.check-is-bot.outputs.is_bot}}
+ is_bot: ${{ steps.check-is-bot.outputs.is_bot}}
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v4
.github/workflows/repo_policies.yml
@@ -13,7 +13,7 @@ jobs:
13
name: Check Bot Policies
14
runs-on: ubuntu-latest
needs: check-is-bot
- if: ${{ needs.check-is-bot.outputs.is_bot == 'true' && needs.check-is-bot.result == 'success' }}
+ if: ${{ needs.check-is-bot.outputs.is_bot != 'false' }}
# First check out code from public-workflows
0 commit comments