We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf71db5 commit 7b6b6c0Copy full SHA for 7b6b6c0
.github/workflows/on_opened_pr.yml
@@ -21,9 +21,10 @@ jobs:
21
token: ${{ secrets.GITHUB_TOKEN }}
22
check_related_issue:
23
needs: get_pr_details
24
+ # Maintenance: Refactor condition to the correct env syntax later
25
if: >
26
${{ needs.get_pr_details.outputs.prAction == 'opened' &&
- 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
28
}}
29
runs-on: ubuntu-latest
30
steps:
0 commit comments