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
7 changes: 7 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ permissions:

jobs:
cla:
# Skip the job outright for the maintainer's own PRs and bot PRs — the
# allowlist below would auto-pass them anyway, so the run is pure noise.
# issue_comment events always run: that's how contributors sign.
if: >-
github.event_name == 'issue_comment' ||
(github.event.pull_request.user.login != 'getappz' &&
!endsWith(github.event.pull_request.user.login, '[bot]'))
runs-on: ubuntu-latest
steps:
- name: CLA Assistant
Expand Down
Loading