Skip to content

Commit

Permalink
ci: standardize on .yaml file extensions on workflow files (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgb authored Oct 5, 2023
1 parent 8546bfc commit e5bb6c2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: CI

on:
pull_request: {}
push:
branches:
- main

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-filenames:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- uses: batista/lint-filenames@1b766f13475cbdd2df8f2b75d8afda9a48ce7d84 # v1.0.1
name: Validating .yaml file extension on all workflow files
with:
path: "./.github/workflows"
pattern: "\\.yaml$"
File renamed without changes.
File renamed without changes.

0 comments on commit e5bb6c2

Please sign in to comment.