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
18 changes: 10 additions & 8 deletions .github/workflows/qcom-preflight-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Qualcomm Preflight Checks

on:
pull_request_target:
branches:
Expand All @@ -13,18 +14,19 @@ on:
workflow_dispatch:

permissions:
contents: read
security-events: write
contents: read
security-events: write

jobs:
qcom-preflight-checks:
uses: qualcomm/qcom-reusable-workflows/.github/workflows/[email protected]
with:
# ✅ Preflight Checkers
repolinter: true # default: true
semgrep: true # default: true
copyright-license-detector: true # default: true
pr-check-emails: true # default: true
dependency-review: true # default: true
# ✅ Preflight Checkers
repolinter: true
semgrep: true
copyright-license-detector: true
pr-check-emails: true
dependency-review: true
secrets:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
GH_PAT: ${{ secrets.MY_PAT }} # 👈 Add this line to pass your PAT
2 changes: 1 addition & 1 deletion ubuntu/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def parse_arguments():
try:
MANIFEST_MAP = generate_manifest_map(WORKSPACE_DIR)
except Exception as e:
logger.error(f"Failed to generate manifest map: {e}")
logger.warning(f"Failed to generate manifest map: {e}")
MANIFEST_MAP = {}

# Build the kernel if specified
Expand Down
Loading