Skip to content

Commit

Permalink
Add github action review action
Browse files Browse the repository at this point in the history
  • Loading branch information
wadells committed Nov 29, 2023
1 parent 7381479 commit acfbd37
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lint-github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
pull_request:
branches:
- main

name: Continuous Integration

jobs:
check-github-actions:
name: Check GitHub Actions
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check for affected paths
id: changes
uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
with:
filters: |
github-actions:
- '.github/*/**/*.{yaml,yml}'
- name: Ensure SHA pinned actions
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@b35f285b9bb7e80de0967367cee66d3b6d50ceca # v3.0.1
if: steps.changes.outputs.github-actions == 'true'
with:
allowlist: |
github/
actions/
gravitational/shared-workflows/.github/workflows
gravitational/teleport/.github/workflows
gravitational/teleport.e/.github/workflows

0 comments on commit acfbd37

Please sign in to comment.