summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-25 12:07:00 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-25 17:10:45 +0900
commit5b407450f5a28295cdeae8e8bb3ea4591600e395 (patch)
tree0b01b9e4813b672c028cd133e10489f8cea03cda /.github/workflows
parentf7359e112a2834e7360dcee3836508d2031b7e72 (diff)
Skip push by dependabot [ci skip]
Would be pull-requested soon.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/annocheck.yml1
-rw-r--r--.github/workflows/baseruby.yml1
-rw-r--r--.github/workflows/check_dependencies.yml1
-rw-r--r--.github/workflows/codeql-analysis.yml1
-rw-r--r--.github/workflows/compilers.yml1
-rw-r--r--.github/workflows/macos.yml1
-rw-r--r--.github/workflows/mingw.yml1
-rw-r--r--.github/workflows/rjit-bindgen.yml1
-rw-r--r--.github/workflows/rjit.yml1
-rw-r--r--.github/workflows/spec_guards.yml1
-rw-r--r--.github/workflows/ubuntu.yml1
-rw-r--r--.github/workflows/wasm.yml1
-rw-r--r--.github/workflows/windows.yml1
-rw-r--r--.github/workflows/yjit-ubuntu.yml1
14 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/annocheck.yml b/.github/workflows/annocheck.yml
index ca3709fe97..2f5ece8328 100644
--- a/.github/workflows/annocheck.yml
+++ b/.github/workflows/annocheck.yml
@@ -45,6 +45,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
env:
diff --git a/.github/workflows/baseruby.yml b/.github/workflows/baseruby.yml
index 68a40c8c4f..50176b3eb0 100644
--- a/.github/workflows/baseruby.yml
+++ b/.github/workflows/baseruby.yml
@@ -41,6 +41,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
strategy:
diff --git a/.github/workflows/check_dependencies.yml b/.github/workflows/check_dependencies.yml
index 1ddaec56e6..ac065faaa0 100644
--- a/.github/workflows/check_dependencies.yml
+++ b/.github/workflows/check_dependencies.yml
@@ -43,6 +43,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 0c3312e47b..04edf23641 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -41,6 +41,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
env:
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index f223efc797..abee0ffd00 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -221,6 +221,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
env: ${{ matrix.entry.env || matrix.env }}
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 88219e7777..30c30e4626 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -52,6 +52,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 1b369c7f8e..df24ff394e 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -63,6 +63,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/rjit-bindgen.yml b/.github/workflows/rjit-bindgen.yml
index 5881ee7535..6a6769b92a 100644
--- a/.github/workflows/rjit-bindgen.yml
+++ b/.github/workflows/rjit-bindgen.yml
@@ -44,6 +44,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/rjit.yml b/.github/workflows/rjit.yml
index 47c656dd07..eea20d6be9 100644
--- a/.github/workflows/rjit.yml
+++ b/.github/workflows/rjit.yml
@@ -54,6 +54,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/spec_guards.yml b/.github/workflows/spec_guards.yml
index 9ce5983c6c..77677c9859 100644
--- a/.github/workflows/spec_guards.yml
+++ b/.github/workflows/spec_guards.yml
@@ -32,6 +32,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
strategy:
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 1e7fa3ecd4..66b0228102 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -60,6 +60,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml
index 1e6475711a..3be9bf8d1e 100644
--- a/.github/workflows/wasm.yml
+++ b/.github/workflows/wasm.yml
@@ -59,6 +59,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps:
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 748d248395..71209a5c9c 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -45,6 +45,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
name: VisualStudio ${{ matrix.vs }}
diff --git a/.github/workflows/yjit-ubuntu.yml b/.github/workflows/yjit-ubuntu.yml
index 1222018c66..45c7a22444 100644
--- a/.github/workflows/yjit-ubuntu.yml
+++ b/.github/workflows/yjit-ubuntu.yml
@@ -114,6 +114,7 @@ jobs:
|| contains(github.event.head_commit.message, '[DOC]')
|| contains(github.event.pull_request.title, '[DOC]')
|| contains(github.event.pull_request.labels.*.name, 'Documentation')
+ || (github.event_name == 'push' && github.actor == 'dependabot[bot]')
)}}
steps: