Skip to content
Merged
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
9 changes: 0 additions & 9 deletions .github/dependency-review-config-foss.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/git-commit-lint-local.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# GitHub Actions Workflow for Git Commit Linter

name: Git Commit Linter

on:
push:
branches:
- develop
- master
pull_request:
types:
- opened
- reopened
- synchronize

permissions:
contents: read

jobs:
git-commit-lint:
name: Git Commit Linter
uses: cordada/github-actions-utils/.github/workflows/git-commit-lint.yaml@master
7 changes: 6 additions & 1 deletion .github/workflows/super-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ on:
type: string
required: true
description: Default Branch of Git Repository
validate_all_codebase:
type: boolean
required: false
default: true
description: When `true`, validate all files; when `false`, only new or edited files.

validate_editorconfig:
type: boolean
Expand Down Expand Up @@ -124,5 +129,5 @@ jobs:
env:
DEFAULT_BRANCH: ${{ inputs.default_git_branch }}
LINTER_RULES_PATH: /
VALIDATE_ALL_CODEBASE: true
VALIDATE_ALL_CODEBASE: ${{ inputs.validate_all_codebase }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 10 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
Commitlint Configuration

Commitlint is a Git commit message linter.

- Web site: https://commitlint.js.org/
- Documentation: https://github.com/conventional-changelog/commitlint#readme
*/

module.exports = { extends: ["@cordada/commitlint-config-cordada"] };