Skip to content
Closed
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
19 changes: 19 additions & 0 deletions .github/workflows/preflight-checkers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: preflight-checkers
on:
pull_request:
branches: ["main"]
push:
branches: ["main"]
workflow_dispatch:

jobs:
checker:
uses: qualcomm-linux/multi-checker-pipeline/.github/workflows/checker.yml@main
with:
repolinter: true # default: false
semgrep: true # default: false
copyright-license-detector: true # default: false
pr-check-emails: true # default: false

secrets:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
16 changes: 11 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,21 @@ Welcome! This repository contains hardware validation shell scripts for Qualcomm

## Commit and PR Guidelines

To ensure consistency and traceability across all contributions, all commits must follow these rules:
- One logical change per commit
- Always add sign-off:
```bash
git commit -s -m "Add test for Bluetooth functionality"
```

- Clear commit message**: Descriptive and meaningful message (avoid "fix" or "update" alone).
- Author information**: Must include your full name and correct email.
- Sign-off**: Each commit must include a `Signed-off-by:` line. This indicates you agree to the Developer Certificate of Origin (DCO).
- Branch naming**: Use descriptive prefixes, e.g.:
- `fix/issue-description`
- `feature/component-name`
- `chore/cleanup-topic`
- Target branch**: Always open PRs against the `main` branch unless instructed otherwise.
- Mention reviewers if needed and explain validation steps
- PRs should be raised against `main` unless otherwise noted

Automated checks will validate all of the above in CI workflows. PRs with failing commit checks will not be merged.

## License

All contributions must include:
Expand Down
Loading