diff options
author | silverwind <me@silverwind.io> | 2023-06-23 15:56:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 13:56:18 +0000 |
commit | e441a5d75143031661a3ffa26d4d6c8680e7f73f (patch) | |
tree | 48e0a4afdd34371086a370e19e557f2cc203d6bd /.github/workflows/files-changed.yml | |
parent | fab63cf56584efede4ba13b72a4541bf73c0b06d (diff) | |
download | gitea-e441a5d75143031661a3ffa26d4d6c8680e7f73f.tar.gz gitea-e441a5d75143031661a3ffa26d4d6c8680e7f73f.zip |
Add `Makefile` to `files-changed` (#25463)
When only `Makefile` changes, nothing currently runs. Add it to a few
categories.
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to '.github/workflows/files-changed.yml')
-rw-r--r-- | .github/workflows/files-changed.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/files-changed.yml b/.github/workflows/files-changed.yml index 398fb6eae3..0d43e191a3 100644 --- a/.github/workflows/files-changed.yml +++ b/.github/workflows/files-changed.yml @@ -20,7 +20,6 @@ jobs: detect: runs-on: ubuntu-latest timeout-minutes: 3 - # Map a step output to a job output outputs: backend: ${{ steps.changes.outputs.backend }} frontend: ${{ steps.changes.outputs.frontend }} @@ -39,12 +38,14 @@ jobs: - "templates/**/*.tmpl" - "go.mod" - "go.sum" + - "Makefile" frontend: - "**/*.js" - "web_src/**" - "package.json" - "package-lock.json" + - "Makefile" docs: - "**/*.md" @@ -56,7 +57,9 @@ jobs: templates: - "templates/**/*.tmpl" - "poetry.lock" + docker: - "Dockerfile" - "Dockerfile.rootless" - "docker/**" + - "Makefile" |