summaryrefslogtreecommitdiffstats
path: root/.github/workflows/checks-dummy.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-20 04:49:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-20 04:49:55 +0000
commitab1bb5b7f1c3c3a7b240ab7fc8661459ecd7decb (patch)
tree7a900833aad3ccc685712c6c2a7d87576d54f427 /.github/workflows/checks-dummy.yml
parentAdding upstream version 1.40.1. (diff)
downloadnetdata-ab1bb5b7f1c3c3a7b240ab7fc8661459ecd7decb.tar.xz
netdata-ab1bb5b7f1c3c3a7b240ab7fc8661459ecd7decb.zip
Adding upstream version 1.41.0.upstream/1.41.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--.github/workflows/checks-dummy.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/checks-dummy.yml b/.github/workflows/checks-dummy.yml
new file mode 100644
index 000000000..369d70ff9
--- /dev/null
+++ b/.github/workflows/checks-dummy.yml
@@ -0,0 +1,42 @@
+---
+name: Checks
+on:
+ pull_request:
+ paths-ignore: # This MUST be kept in sync with the paths key for the checks.yml workflow.
+ - '**.c'
+ - '**.cc'
+ - '**.h'
+ - '**.hh'
+ - '**.in'
+ - '!netdata.spec.in'
+ - 'configure.ac'
+ - '**/Makefile*'
+ - 'Makefile*'
+ - '.gitignore'
+ - '.github/workflows/checks.yml'
+ - 'build/**'
+ - 'aclk/aclk-schemas/'
+ - 'ml/dlib/'
+ - 'mqtt_websockets'
+ - 'web/server/h2o/libh2o'
+env:
+ DISABLE_TELEMETRY: 1
+concurrency:
+ group: checks-${{ github.ref }}
+ cancel-in-progress: true
+jobs:
+ libressl-checks:
+ name: LibreSSL
+ runs-on: ubuntu-latest
+ steps:
+ - run: "echo 'NOT REQUIRED'"
+ clang-checks:
+ name: Clang
+ runs-on: ubuntu-latest
+ steps:
+ - run: "echo 'NOT REQUIRED'"
+ gitignore-check:
+ name: .gitignore
+ runs-on: ubuntu-latest
+ steps:
+ - run: "echo 'NOT REQUIRED'"