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:37 UTC

[tinkerpop] branch master updated (1995f7c -> 432f668)

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

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


    from 1995f7c  Merge branch '3.5-dev'
     add 1603415  Try to trim down the gh action builds so that they only occur for code changes CTR
     add 9a0c9f1  Already an error in previous commit related - smoke needs to depend on check CTR
     add 1be21d7  Apparently apache forces us to use a version in GitHub Marketplace CTR
     add b1ad6a3  Error in previous commit with gh action version CTR
     new e9746fc  In tiny tiny letters it seems that this gh action is not certified by the gh marketplace - can't be used. CTR
     new cafd020  Merge branch '3.4-dev' into 3.5-dev
     new 432f668  Merge branch '3.5-dev'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

[tinkerpop] 03/03: Merge branch '3.5-dev'

Posted by sp...@apache.org.
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 432f668ecac7a24c55e6b452648043a24a5f3f30
Merge: 1995f7c cafd020
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Oct 5 08:09:24 2021 -0400

    Merge branch '3.5-dev'


[tinkerpop] 02/03: Merge branch '3.4-dev' into 3.5-dev

Posted by sp...@apache.org.
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 cafd020b5ea8e769eddfbfea4daf2c0a5ab3883a
Merge: 2f2e42a e9746fc
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Oct 5 08:09:16 2021 -0400

    Merge branch '3.4-dev' into 3.5-dev


[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

Posted by sp...@apache.org.
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