Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ permissions:
jobs:
cla:
runs-on: ubuntu-latest
# Skip the CLA gate for the Owner and bots (they are allowlisted). Skipping the
# job makes the required check "cla" resolve as passed for these actors, so
# their PRs never see a spurious CLA failure. Real contributors still run it.
if: >-
${{
!(
github.event.pull_request.user.login == 'bkd-dotcom' ||
github.event.pull_request.user.login == 'dependabot[bot]' ||
github.event.issue.user.login == 'bkd-dotcom' ||
github.event.issue.user.login == 'dependabot[bot]'
)
}}
# Skip Dependabot / the Owner's own automated PRs if desired; contributors still gate.
steps:
- name: CLA Assistant
Expand Down
Loading