aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull-request.yml
diff options
context:
space:
mode:
authorrtm516 <rtm516@users.noreply.github.com>2026-03-29 05:35:25 +0100
committerGitHub <noreply@github.com>2026-03-28 23:35:25 -0500
commit38d58f2d8bb8af5516671b42940279d4e582d9c7 (patch)
tree6978c532ce68f9bbd002b91f499c35251580f4ae /.github/workflows/pull-request.yml
parent277d74716e9a2c937500e16273727a24f49508ee (diff)
Update actions workflows and add clang format check for PRs (#1418)main
* Add clang-format workflow for pull request checks * Modify push paths in nightly workflow Updated paths for push event to include all files except specified ones. * Update paths for nightly-server workflow triggers * Modify paths for pull request triggers Update pull request workflow to include specific paths. * Tidy up clang-format installation in workflow
Diffstat (limited to '.github/workflows/pull-request.yml')
-rw-r--r--.github/workflows/pull-request.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml
index 9d57f4b4..3b5398a0 100644
--- a/.github/workflows/pull-request.yml
+++ b/.github/workflows/pull-request.yml
@@ -4,10 +4,12 @@ on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
- paths-ignore:
- - '.gitignore'
- - '*.md'
- - '.github/*.md'
+ paths:
+ - '**'
+ - '!.gitignore'
+ - '!*.md'
+ - '!.github/**'
+ - '.github/workflows/pull-request.yml'
jobs:
build: