From 5b407450f5a28295cdeae8e8bb3ea4591600e395 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 25 Aug 2023 12:07:00 +0900 Subject: Skip push by dependabot [ci skip] Would be pull-requested soon. --- .github/workflows/annocheck.yml | 1 + .github/workflows/baseruby.yml | 1 + .github/workflows/check_dependencies.yml | 1 + .github/workflows/codeql-analysis.yml | 1 + .github/workflows/compilers.yml | 1 + .github/workflows/macos.yml | 1 + .github/workflows/mingw.yml | 1 + .github/workflows/rjit-bindgen.yml | 1 + .github/workflows/rjit.yml | 1 + .github/workflows/spec_guards.yml | 1 + .github/workflows/ubuntu.yml | 1 + .github/workflows/wasm.yml | 1 + .github/workflows/windows.yml | 1 + .github/workflows/yjit-ubuntu.yml | 1 + 14 files changed, 14 insertions(+) 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: -- cgit v1.2.3