Browse Source

Create main linting workflow (#30)

pull/31/head
Micaiah Martin 4 years ago committed by GitHub
parent
commit
7f514533e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      .github/workflows/workflow-linter.yml

22
.github/workflows/workflow-linter.yml

@ -0,0 +1,22 @@ @@ -0,0 +1,22 @@
---
name: Workflow Linter
on:
pull_request:
paths:
- .github/workflows/**
workflow_call:
jobs:
lint:
name: "Workflow Linter"
runs-on: ubuntu-20.04
steps:
- name: Checkout Version Branch
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- name: Workflow Lint
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: bitwarden/gh-actions/lint-workflow@676ae4100b19625c0b0b70525e6c0181bd2d405f
Loading…
Cancel
Save