Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
run server CI when dependencies change (#109)
Browse files Browse the repository at this point in the history
Currently, the server/ CI workflow only runs if a PR has changes in the
server/ directory.  This misses running some tools like linting when
they get updated (for instance, see [PR #107][1]).  Run them when
changes affect hack/tools/** and .github/** as well.

[1]: https://github.com/konflux-workspaces/workspaces/pull/107/checks?sha=5ef9206bc7d5bb502d8f095602fc15035fbb3a65

Signed-off-by: Andy Sadler <ansadler@redhat.com>
  • Loading branch information
sadlerap authored May 6, 2024
1 parent 559efea commit 4e2ec26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: # yamllint disable-line rule:truthy
pull_request:
paths:
- "server/**"
- "hack/tools/**"
- ".github/**"
push:
branches: [main]

Expand Down

0 comments on commit 4e2ec26

Please sign in to comment.