summaryrefslogtreecommitdiff
path: root/.github/workflows/clang-format-lint.yml
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-11-28 19:18:18 +0000
committerPete Johanson <peter@peterjohanson.com>2020-11-28 16:59:38 -0500
commite6d863c61090c5f236657f67d688fafa349a5e55 (patch)
treee6ed3b2c454cfe711cb23b66e564eb5d0085ed13 /.github/workflows/clang-format-lint.yml
parent307fd5d2508e33499198eaebc070e183c3d77230 (diff)
build(workflows): add each workflow to its own trigger conditions
For each workflow, add its path to its own trigger conditions so that it automatically re-triggers for testing purposes whenever it is changed. PR: #443
Diffstat (limited to '.github/workflows/clang-format-lint.yml')
-rw-r--r--.github/workflows/clang-format-lint.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/clang-format-lint.yml b/.github/workflows/clang-format-lint.yml
index 70ae986..6eb73cc 100644
--- a/.github/workflows/clang-format-lint.yml
+++ b/.github/workflows/clang-format-lint.yml
@@ -3,6 +3,7 @@ name: clang-format-lint
on:
push:
paths:
+ - ".github/workflows/clang-format-lint.yml"
- "app/boards/**/*.c"
- "app/include/**/*.h"
- "app/src/**"
@@ -10,6 +11,7 @@ on:
- "app/drivers/**/*.h"
pull_request:
paths:
+ - ".github/workflows/clang-format-lint.yml"
- "app/boards/**/*.c"
- "app/include/**/*.h"
- "app/src/**"