You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/10/05 12:03:33 UTC

[tinkerpop] branch 3.4-dev updated: Try to trim down the gh action builds so that they only occur for code changes CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.4-dev by this push:
     new 1603415  Try to trim down the gh action builds so that they only occur for code changes CTR
1603415 is described below

commit 1603415b734dec2eee11f879df7adb98a9fd353a
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Oct 5 08:02:46 2021 -0400

    Try to trim down the gh action builds so that they only occur for code changes CTR
---
 .github/workflows/build-test.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 5f34973..23cfb30 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -1,6 +1,19 @@
 name: build-test
 on: [push, pull_request]
 jobs:
+  check:
+    runs-on: ubuntu-latest
+    outputs:
+      should_skip: ${{ steps.skip_check.outputs.should_skip }}
+    steps:
+      - id: skip_check
+        name: Check Changes
+        uses: fkirc/skip-duplicate-actions@master
+        with:
+          concurrent_skipping: 'never'
+          skip_after_successful_duplicate: 'true'
+          paths_ignore: '["**/*.asciidoc", "**/*.html", "docs/**", "**/LICENSE", "**/NOTICE", "docker/**", "**/bin/**", "**/licenses/**"]'
+          do_not_skip: '["workflow_dispatch", "schedule"]'
   smoke:
     name: smoke
     timeout-minutes: 600 # 10 minutes