Skip to content

chore(deps): bump commit-check/commit-check-action from 2.15.0 to 2.16.0 in the deps-external group across 1 directory #230

chore(deps): bump commit-check/commit-check-action from 2.15.0 to 2.16.0 in the deps-external group across 1 directory

chore(deps): bump commit-check/commit-check-action from 2.15.0 to 2.16.0 in the deps-external group across 1 directory #230

Workflow file for this run

---
name: Commit Check
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- edited
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
commit-check:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions: # use permissions because use of pr-comments
contents: read
pull-requests: write
steps:
- name: "Cleaning up"
uses: gacts/run-and-post-run@fc6503862aba998e2f2123225ad63c09a92ed46e # v1.4.5
with:
run: |
echo "Pre-Check Cleanup"
echo "~/.local" | xargs rm -rf
post: |
echo "Post-Check Cleanup"
echo "~/.local" | xargs rm -rf
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0 # Required for merge-base checks
persist-credentials: false
- uses: commit-check/commit-check-action@fd3d923eab0876650f261d2a75572e8161a9a58e # v2.16.0
with:
message: true
branch: true
author-name: true
author-email: true
job-summary: true
pr-comments: ${{ github.event_name == 'pull_request' }}