[前][次][番号順一覧][スレッド一覧]

ruby-changes:58175

From: Kazuhiro <ko1@a...>
Date: Wed, 9 Oct 2019 17:46:28 +0900 (JST)
Subject: [ruby-changes:58175] 6f11c3b335 (master): Check '[ci skip]' at job level

https://git.ruby-lang.org/ruby.git/commit/?id=6f11c3b335

From 6f11c3b3354bef107f894f112ff7698414c7bae5 Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Wed, 9 Oct 2019 17:46:05 +0900
Subject: Check '[ci skip]' at job level


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 339cd97..7647b06 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -13,6 +13,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L13
       matrix:
         test_task: [ "check", "test-bundler", "test-bundled-gems" ]
       fail-fast: false
+    if: "!contains(github.event.head_commit.message, '[ci skip]')"
     steps:
       - name: Disable Firewall
         run: |
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 03e5645..abb4e54 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -13,6 +13,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L13
       matrix:
         test_task: [ "check", "test-bundler", "test-bundled-gems" ]
       fail-fast: false
+    if: "!contains(github.event.head_commit.message, '[ci skip]')"
     steps:
       - run: env | sort
       - name: Dump GitHub context
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index cd7b984..ebecaa4 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -20,6 +20,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L20
             vs: 2017
       fail-fast: false
     runs-on: ${{ matrix.os }}
+    if: "!contains(github.event.head_commit.message, '[ci skip]')"
     steps:
       - name: Install libraries with vcpkg
         run: |
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]