ci(deps): bump dev-drprasad/delete-older-releases from 0.3.2 to 0.3.3 #193
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
name: Commit Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
commit-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint commit message | |
uses: wagoid/commitlint-github-action@v5 | |
with: | |
configFile: .github/commitlint_config.js | |
- name: Check no !fixup commits | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: 13rac1/[email protected] | |
- name: Delete workflow logs | |
uses: Mattraks/delete-workflow-runs@v2 | |
with: | |
token: ${{ github.token }} | |
repository: ${{ github.repository }} | |
delete_workflow_pattern: ${{ github.workflow }} | |
retain_days: 3 | |
keep_minimum_runs: 3 |