From 7bc80cb35012d5c3c6a5105ec8cd01b70de86ef7 Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 30 Aug 2023 03:40:13 +0200 Subject: [PATCH] Add various missing files-changed dependencies (#26799) We were missing a number of config files like `.golangci.yml` in the dependencies for the pull request pipelines, which resulted in the linting not running for https://github.com/go-gitea/gitea/pull/26786 because only `.golangci.yml` had changed. --- .github/workflows/files-changed.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/files-changed.yml b/.github/workflows/files-changed.yml index f9156d668d..b9277d3109 100644 --- a/.github/workflows/files-changed.yml +++ b/.github/workflows/files-changed.yml @@ -43,6 +43,8 @@ jobs: - "go.mod" - "go.sum" - "Makefile" + - ".golangci.yml" + - ".editorconfig" frontend: - "**/*.js" @@ -51,16 +53,21 @@ jobs: - "package.json" - "package-lock.json" - "Makefile" + - ".eslintrc.yaml" + - ".stylelintrc.yaml" + - ".npmrc" docs: - "**/*.md" - "docs/**" + - ".markdownlint.yaml" actions: - ".github/workflows/*" templates: - "templates/**/*.tmpl" + - "pyproject.toml" - "poetry.lock" docker: @@ -72,3 +79,6 @@ jobs: swagger: - "templates/swagger/v1_json.tmpl" - "Makefile" + - "package.json" + - "package-lock.json" + - ".spectral.yml"