[18.0.0-proposed] Change order of if-elif conditionals in set_openstack_containers template #14501
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Require Checklist | |
on: # noqa: yaml[truthy] | |
pull_request: | |
types: [opened, edited, synchronize] | |
# According to github, the "actor" for dependabot is dependabot[bot]: | |
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#responding-to-events | |
# This should allow us to NOT require checklist from that bot anymore. | |
# Since we're considering Renovate bot instead, we also exclude it from that | |
# workflow, using https://github.com/renovatebot/renovate/discussions/13704 as | |
# github.actor value. | |
jobs: | |
check-main-comment: | |
if: | | |
github.actor != 'dependabot[bot]' && | |
github.actor != 'renovate[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mheap/require-checklist-action@v2 | |
with: | |
requireChecklist: true |