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-09-30 15:58:19 +00:00
|
|
|
uses: docker://rhysd/actionlint:1.7.3@sha256:7617f05bd698cd2f1c3aedc05bc733ccec92cca0738f3e8722c32c5b42c70ae6
|
2024-09-11 14:54:22 +00:00
|
|
|
with:
|
|
|
|
args: -color
|