Skip to content

Commit

Permalink
modifying condition for CLA
Browse files Browse the repository at this point in the history
  • Loading branch information
sacpis committed Jul 14, 2024
1 parent 058f985 commit 097a8f2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/cla_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ name: "CLA bot"
jobs:
cla-acknowledgement:
runs-on: ubuntu-latest
if: ${{ ! github.event.repository.fork }}
name: "Check that the CLA has been acknowledged"
steps:
- name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the Contributor License Agreement and I hereby accept the Terms.') || github.event_name == 'pull_request_target'
if: ${{ ! github.event.repository.fork }} && ((github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the Contributor License Agreement and I hereby accept the Terms.') || github.event_name == 'pull_request_target')
uses: cla-assistant/github-action@v2.1.3-beta
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 097a8f2

Please sign in to comment.