Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
# https://github.com/rhysd/actionlint/blob/v1.7.7/docs/config.md
self-hosted-runner:
labels:
- windows-11-arm # remove after https://github.com/rhysd/actionlint/pull/542 is merged
11 changes: 10 additions & 1 deletion .github/workflows/__call-common-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,16 @@ jobs:
- name: Install actionlint
id: get_actionlint
shell: bash
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)

if [ ! -f ".github/actionlint.yml" ]; then
curl \
-fsSL \
--retry 3 \
-o ".github/actionlint.yml" \
"https://raw.githubusercontent.com/LizardByte/.github/master/.github/actionlint.yml"
fi

- name: Replace shell
shell: bash
Expand Down