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:09:38 UTC

[tinkerpop] 01/03: In tiny tiny letters it seems that this gh action is not certified by the gh marketplace - can't be used. CTR

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

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

commit e9746fc47a1c0957a881276bb72008aa1411e364
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Oct 5 08:08:22 2021 -0400

    In tiny tiny letters it seems that this gh action is not certified by the gh marketplace - can't be used. CTR
---
 .github/workflows/build-test.yml | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 8d6a500..5f34973 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -1,23 +1,9 @@
 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@v3.4.1
-        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
-    needs: check
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v2