Skip to content

Commit 3fbec85

Browse files
authored
1 parent b2aba6d commit 3fbec85

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/actionlint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
config-variables:
2+
- TASTENDRUCK_APP_ID

.github/workflows/actionlint.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Actionlint
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
11+
cancel-in-progress: true
12+
13+
permissions: {}
14+
15+
jobs:
16+
actionlint:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v6
20+
with:
21+
sparse-checkout: .github
22+
23+
- name: Check workflow files
24+
uses: docker://rhysd/actionlint:latest
25+
with:
26+
args: -color

0 commit comments

Comments
 (0)