loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

authored by

silverwind and committed by
GitHub
7bc80cb3 1a9998ce

+10
+10
.github/workflows/files-changed.yml
··· 43 43 - "go.mod" 44 44 - "go.sum" 45 45 - "Makefile" 46 + - ".golangci.yml" 47 + - ".editorconfig" 46 48 47 49 frontend: 48 50 - "**/*.js" ··· 51 53 - "package.json" 52 54 - "package-lock.json" 53 55 - "Makefile" 56 + - ".eslintrc.yaml" 57 + - ".stylelintrc.yaml" 58 + - ".npmrc" 54 59 55 60 docs: 56 61 - "**/*.md" 57 62 - "docs/**" 63 + - ".markdownlint.yaml" 58 64 59 65 actions: 60 66 - ".github/workflows/*" 61 67 62 68 templates: 63 69 - "templates/**/*.tmpl" 70 + - "pyproject.toml" 64 71 - "poetry.lock" 65 72 66 73 docker: ··· 72 79 swagger: 73 80 - "templates/swagger/v1_json.tmpl" 74 81 - "Makefile" 82 + - "package.json" 83 + - "package-lock.json" 84 + - ".spectral.yml"