Update dependency lsst/ccs_sal to v2.9.0 #4505
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yamllint disable rule:quoted-strings | |
name: Commit Message Check | |
"on": pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
preflight: | |
runs-on: ubuntu-latest | |
outputs: | |
renovate: ${{ steps.renovate.outputs.renovate }} | |
steps: | |
# flag PRs opened by renovate | |
- id: renovate | |
run: | | |
if [[ ${{ github.head_ref }} == *"renovate"* ]]; then | |
echo "renovate=true" >> $GITHUB_OUTPUT | |
else | |
echo "renovate=false" >> $GITHUB_OUTPUT | |
fi | |
check-commit-message: | |
name: Check Commit Message | |
needs: [preflight] | |
# ignore PRs from renovate | |
if: ${{ needs.preflight.outputs.renovate == 'false' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Commit Type | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '\([^)]+\) .+$' | |
flags: gm | |
error: Your first line has to contain a commit type like '(role/foo)'. | |
checkAllCommitMessages: "true" | |
accessToken: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Check Line Length | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^(?!.{73})' | |
error: The maximum line length of 72 characters is exceeded. | |
checkAllCommitMessages: "true" | |
accessToken: "${{ secrets.GITHUB_TOKEN }}" |