Skip to content

ci(push): update super-linter action #101

ci(push): update super-linter action

ci(push): update super-linter action #101

Workflow file for this run

name: push
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
super-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: super-linter/super-linter@v7.1.0
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_UNCIAE }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_PYINK: false
notify:
needs: [commitlint, super-linter]
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.GH_ACTIONS_UNCIAE }}
repository: streambinder/clavis
event-type: unciae-sync
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'