Skip to content

Commit

Permalink
Add initial CI to lint workflows in the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
enpaul committed Jan 25, 2025
1 parent 8a686ce commit 8a086f7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on: [push, pull_request]

permissions: {}

jobs:
# Lints this repos CI under `.github/workflows/`
lint-actions:
uses: ./workflows/lint-actions.yaml
secrets:
gh-token: ${{ secrets.GITHUB_TOKEN }}

# Lints the reusable workflows under `workflows/`
lint-reusable-actions:
uses: ./workflows/lint-actions.yaml
with:
path: workflows/*.yaml
secrets:
gh-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8a086f7

Please sign in to comment.