From c9f93fc507035a9096befdf829a6576a73d4e8bf Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Fri, 31 May 2024 19:37:01 -0300 Subject: [PATCH] github: add actionlint configuration file Added configuration file with rules to exclude some self-hosted runners from the linter warnings. Related-with: #9646 Signed-off-by: Wainer dos Santos Moschetta --- .github/actionlint.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 0000000000..dd49463130 --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,24 @@ +# Copyright (c) 2024 Red Hat +# +# SPDX-License-Identifier: Apache-2.0 +# +# Configuration file with rules for the actionlint tool. +# +self-hosted-runner: + # Labels of self-hosted runner that linter should ignore + labels: + - arm64-builder + - garm-ubuntu-2004 + - garm-ubuntu-2004-smaller + - garm-ubuntu-2204 + - garm-ubuntu-2304 + - garm-ubuntu-2304-smaller + - garm-ubuntu-2204-smaller + - k8s-ppc64le + - metrics + - ppc64le + - sev + - sev-snp + - s390x + - s390x-large + - tdx