diff --git a/.github/workflows/mdlint.yml b/.github/workflows/mdlint.yml
index 901286b65c4ec61a7125a9a8aa4f9e49312d4265..fad84c83a5c71357b9cfb3410a8c94d58cb73175 100644
--- a/.github/workflows/mdlint.yml
+++ b/.github/workflows/mdlint.yml
@@ -1,10 +1,10 @@
 name: markdownlint
-on:
-  push:
-    paths:
-      - '**/*.md'
-      - '.markdownlint.json'
-      - '!third_party/**'
+on: [push]
+#  push:
+#    paths:
+#      - '**/*.md'
+#      - '.markdownlint.json'
+#      - '!third_party/**'
 
 jobs:
   pylint:
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
index 929a05143cdd7dfac83077a06df45127616f93ec..431d93cb60ecafe516d7e76bb8b8a2355c755aa4 100644
--- a/.github/workflows/pylint.yml
+++ b/.github/workflows/pylint.yml
@@ -1,10 +1,10 @@
 name: pylint
-on:
-  push:
-    paths:
-      - '**/*.py'
-      - '.pylintrc'
-      - '!third_party/**'
+on: [push]
+#  push:
+#    paths:
+#      - '**/*.py'
+#      - '.pylintrc'
+#      - '!third_party/**'
 jobs:
   pylint:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 0611f1f0a9272a8f1d7b1d6b417a6c2585b4be02..a3727a237eb2b80c9531bd031c05c9783ce5fe61 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -1,13 +1,13 @@
-on:
-  push:
-    paths:
-      - 'examples/*.rs'
-      - 'libraries/**/*.rs'
-      - 'src/**/*.rs'
-      - 'patches/**'
-      - '**/Cargo.toml'
-      - '.cargo/config'
-      - '!third_party/**'
+on: [push]
+#  push:
+#    paths:
+#      - 'examples/*.rs'
+#      - 'libraries/**/*.rs'
+#      - 'src/**/*.rs'
+#      - 'patches/**'
+#      - '**/Cargo.toml'
+#      - '.cargo/config'
+#      - '!third_party/**'
 
 jobs:
   initial_setup: