2023-04-04 13:39:10 +00:00
|
|
|
name: CI
|
2023-03-09 11:34:41 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/**"
|
|
|
|
branches:
|
|
|
|
- main
|
2024-06-19 17:16:04 +00:00
|
|
|
- 3.x
|
2023-03-09 11:34:41 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/**"
|
|
|
|
branches:
|
|
|
|
- main
|
2024-06-19 17:16:04 +00:00
|
|
|
- 3.x
|
2023-04-20 08:47:03 +00:00
|
|
|
- "!v[0-9]*"
|
2023-03-09 11:34:41 +00:00
|
|
|
|
2023-06-02 17:14:21 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-03-09 11:34:41 +00:00
|
|
|
jobs:
|
|
|
|
lint-workflows:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-10-23 19:15:49 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2023-03-09 11:34:41 +00:00
|
|
|
# From https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions
|
|
|
|
- name: Check workflow files
|
2024-11-04 13:59:36 +00:00
|
|
|
uses: docker://rhysd/actionlint:1.7.4@sha256:82244e1db1c60d82c7792180a48dd0bcb838370bb589d53ff132503fc9485868
|
2024-09-11 14:54:22 +00:00
|
|
|
with:
|
|
|
|
args: -color
|