Skip to content

Commit f6c120b

Browse files
committed
chore: add reusable workflow foundation
Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent d5b122d commit f6c120b

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

‎.github/workflows/actionlint.yml‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# SPDX-FileCopyrightText: 2026 LibreCode coop and contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
name: actionlint
5+
6+
on:
7+
pull_request:
8+
push:
9+
branches:
10+
- main
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
actionlint:
17+
name: actionlint
18+
runs-on: ubuntu-latest
19+
timeout-minutes: 10
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
23+
with:
24+
persist-credentials: false
25+
26+
- name: Run actionlint
27+
uses: raven-actions/actionlint@3d39aea434753780c3b3d4a1a31c854b4dbf49d7 # v2.2.0
28+
with:
29+
version: 1.7.12
30+
shellcheck: true

0 commit comments

Comments
 (0)