Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 5 additions & 6 deletions .github/workflows/01-CLA-Assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: 01-CLA-Assistant
## This workflow is used for public repositories

on:
workflow_dispatch:
#issue_comment:
# types: [created]
#pull_request_target:
# types: [opened,closed,synchronize,reopened]
issue_comment:
types: [created]
pull_request_target:
types: [opened,closed,synchronize,reopened]

permissions:
actions: write
Expand All @@ -28,7 +27,7 @@ jobs:
repositories: contributor-license-agreements

- name: "CLA Assistant"
if: ${{ contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA') }} || github.event_name == 'pull_request_target'
if: ${{ github.event_name == 'pull_request_target' || (github.event_name == 'issue_comment' && contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA')) }}
uses: SiliconLabsSoftware/action-cla-assistant@silabs_flavour_v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/04-TruffleHog-Security-Scan.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: 04-TruffleHog-Security-Scan
on:
pull_request:
branches:
- main
- master
- develop
- "release/**"
pull_request:
branches:
- main
- master
- develop
- "release/**"
jobs:
trufflehog_scan:
runs-on: ubuntu-24.04
Expand Down
Loading