build(deps): bump io.gitlab.arturbosch.detekt from 1.20.0 to 1.23.3 #87
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: Lint | |
on: | |
workflow_call: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-commits: | |
runs-on: ubuntu-22.04 | |
if: github.actor != 'dependabot[bot]' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check commits | |
uses: wagoid/commitlint-github-action@v4 | |
lint-markdown: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Lint markdown files | |
uses: avto-dev/markdown-lint@v1.5.0 | |
with: | |
args: "**/*.md" | |
ignore: "CHANGELOG.md" | |
lint-yaml: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Lint yaml files | |
uses: ibiqlik/action-yamllint@v3.1.0 | |
lint-kotlin: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Check gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Configure gradle.properties | |
run: | | |
cat <<EOF >> gradle.properties | |
maven.credentials.username=${{ secrets.MAVEN_REPOSITORY_USERNAME }} | |
maven.credentials.password=${{ secrets.MAVEN_REPOSITORY_PASSWORD }} | |
EOF | |
- name: Lint kotlin files | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: lint | |
lint-dockerfile: | |
runs-on: ubuntu-22.04 | |
if: github.actor != 'dependabot[bot]' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Lint dockerfile (hadolint) | |
uses: hadolint/hadolint-action@v2.1.0 | |
- name: Lint dockerfile (docker-lint) | |
uses: luke142367/Docker-Lint-Action@v1.1.1 | |
with: | |
target: Dockerfile | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
lint-branch-name: | |
runs-on: ubuntu-22.04 | |
if: github.actor != 'dependabot[bot]' && github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened') | |
steps: | |
- name: Check branch name conventions | |
uses: AlbertHernandez/branch-name-action@v1.0.2 | |
with: | |
branch_pattern: "feat|fix|build|ci|docs|style|refactor|perf|test|chore" | |
comment_for_invalid_branch_name: | | |
πβ Oops! This branch name does not follow the naming convention. | |
<hr> | |
Please, see the following branch naming convention: | |
Branch naming convention | Purpose | |
------------------------ | ------- | |
`feat/**` | A new feature | |
`fix/**` | A bug fix | |
`build/**` | Changes that affect the build system (npm, mavem, poetry) | |
`ci/**` | Changes to the CI configuration | |
`docs/**` | Documentation only changes | |
`style/**` | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | |
`refactor/**` | Code changes that neither fixe a bug nor adds a feature | |
`perf/**` | Code changes that improve performance | |
`test/**` | When adding tests or correcting existing tests | |
`chore/**` | Other changes that don't modify source | |
fail_if_invalid_branch_name: "true" | |
ignore_branch_pattern: "main" | |
- name: Close non-compliant branch | |
if: ${{ failure() }} | |
uses: codelytv/no-pull-requests@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.OKP4_TOKEN }} | |
message: π Closing the PR because it does not respect naming conventions. Edit the branch name and submit a new PR. | |
env: | |
GITHUB_TOKEN: ${{ secrets.OKP4_TOKEN }} |