Skip to content

Adding fixed events for apache-nifi (#4966) #9852

Adding fixed events for apache-nifi (#4966)

Adding fixed events for apache-nifi (#4966) #9852

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- 'main'
push:
branches:
- gh-readonly-queue/main/**
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
# this need to point to main to always get the latest action
- uses: wolfi-dev/actions/wolfictl-lint@main # main
with:
run_wolfictl_lint_yam: 'true'
run_wolfictl_lint: 'false'
misspell:
name: Misspell
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: reviewdog/action-misspell@5bd7be2fc7ae56a517184f5c4bbcf2fd7afe3927 # v1.17.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_on_error: true
locale: "US"