Skip to content

Commit

Permalink
Add workflow file linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbillion committed Jan 4, 2025
1 parent a58c75f commit 7cfedd5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: Lint workflow files
on:
pull_request:
branches:
- '**'
push:
branches:
- develop
- trunk

permissions: {}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint
permissions:
security-events: write
actions: read
contents: read
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-workflow-lint.yml@trunk

0 comments on commit 7cfedd5

Please sign in to comment.