Skip to content

Commit 7b6b6c0

Browse files
committed
chore(ci): fix condition on pr_open
1 parent cf71db5 commit 7b6b6c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/on_opened_pr.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ jobs:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
check_related_issue:
2323
needs: get_pr_details
24+
# Maintenance: Refactor condition to the correct env syntax later
2425
if: >
2526
${{ needs.get_pr_details.outputs.prAction == 'opened' &&
26-
contains(fromJson(env.IGNORE_AUTHORS), needs.get_pr_details.outputs.prAuthor) != true
27+
contains(fromJson('["dependabot[bot]", "markdownify[bot]"]'), needs.get_pr_details.outputs.prAuthor) != true
2728
}}
2829
runs-on: ubuntu-latest
2930
steps:

0 commit comments

Comments
 (0)