We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cccf28 commit 6f6a687Copy full SHA for 6f6a687
.github/workflows/compliance.yml
@@ -72,8 +72,12 @@ jobs:
72
git log --pretty=oneline | head -n 10
73
# Increase rename limit to allow for large PRs
74
git config diff.renameLimit 10000
75
- ./scripts/ci/check_compliance.py --annotate -e KconfigBasic -e SysbuildKconfigBasic -e ClangFormat \
76
- -c origin/${BASE_REF}..
+ excludes="-e KconfigBasic -e SysbuildKconfigBasic -e ClangFormat"
+ # The signed-off-by check for dependabot should be skipped
77
+ if [ "${{ github.actor }}" == "dependabot[bot]" ]; then
78
+ excludes="$excludes -e Identity"
79
+ fi
80
+ ./scripts/ci/check_compliance.py --annotate $excludes -c origin/${BASE_REF}..
81
82
- name: upload-results
83
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
0 commit comments