From b3542e8b10ee6e6f4d861c9a762e6566891f6a63 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 23 Feb 2022 15:58:28 -0500 Subject: [PATCH] .devcontainer/ is no no too (#25584) * .devcontainer is no-no too * all places --- .github/workflows/triage-unallowed-contributions.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/triage-unallowed-contributions.yml b/.github/workflows/triage-unallowed-contributions.yml index a84cac5d95..fe146e1d54 100644 --- a/.github/workflows/triage-unallowed-contributions.yml +++ b/.github/workflows/triage-unallowed-contributions.yml @@ -7,6 +7,7 @@ name: Check unallowed file changes on: pull_request_target: paths: + - '.devcontainer/**' - '.github/actions-scripts/**' - '.github/workflows/**' - '.github/CODEOWNERS' @@ -54,6 +55,7 @@ jobs: openapi: - 'lib/rest/static/**' notAllowed: + - '.devcontainer/**' - '.github/actions-scripts/**' - '.github/workflows/**' - '.github/CODEOWNERS' @@ -78,6 +80,7 @@ jobs: with: script: | const badFilesArr = [ + '.devcontainer/**', '.github/actions-scripts/**', '.github/workflows/**', '.github/CODEOWNERS',