You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by wa...@apache.org on 2022/10/25 13:27:09 UTC

[incubator-devlake-helm-chart] branch fix-5 updated (404a8e7 -> d55b6ce)

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

warren pushed a change to branch fix-5
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git


 discard 404a8e7  test2
    omit 31f46f9  test1
    omit 2606c4a  test
     add 526359a  test (#10)
     add 6e1c2f9  Fix 4 (#11)
     new 4a1ae02  test1
     new d55b6ce  test2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (404a8e7)
            \
             N -- N -- N   refs/heads/fix-5 (d55b6ce)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 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:


[incubator-devlake-helm-chart] 02/02: test2

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

warren pushed a commit to branch fix-5
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git

commit d55b6cefd1a7377f4fd83ec93bad497cca06522f
Author: Yingchu Chen <yi...@merico.dev>
AuthorDate: Tue Oct 25 21:26:11 2022 +0800

    test2
---
 .github/actions/.github/actions/chart-releaser-action | 1 -
 .gitmodules                                           | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/actions/.github/actions/chart-releaser-action b/.github/actions/.github/actions/chart-releaser-action
deleted file mode 160000
index 98bccfd..0000000
--- a/.github/actions/.github/actions/chart-releaser-action
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 98bccfd32b0f76149d188912ac8e45ddd3f8695f
diff --git a/.gitmodules b/.gitmodules
index cffbccf..50e426f 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -4,7 +4,7 @@
 	branch = v0.5.0
 [submodule ".github/actions/chart-releaser-action"]
 	path = .github/actions/chart-releaser-action
-	url = https://github.com/helm/chart-releaser-action.git
+	url = git@github.com:helm/chart-releaser-action.git
 [submodule ".github/actions/.github/actions/chart-releaser-action"]
 	path = .github/actions/.github/actions/chart-releaser-action
 	url = git@github.com:helm/chart-releaser-action.git


[incubator-devlake-helm-chart] 01/02: test1

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

warren pushed a commit to branch fix-5
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git

commit 4a1ae0280bee77e48dfc77c1a8f3ddf8bc78a6b2
Author: Yingchu Chen <yi...@merico.dev>
AuthorDate: Tue Oct 25 21:22:59 2022 +0800

    test1
---
 .github/workflows/ci.yaml | 66 -----------------------------------------------
 1 file changed, 66 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 5088363..0000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,66 +0,0 @@
-name: CI
-
-on:
-  pull_request:
-    branches:
-      - "*"
-
-  push:
-
-jobs:
-
-  helm:
-    name: Helm chart
-    runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        k8s: [v1.16.15, v1.17.17, v1.18.19, v1.19.11, v1.20.7, v1.21.1, v1.22.2]
-
-    steps:
-
-      - name: Checkout
-        uses: actions/checkout@v2
-        with:
-          submodules: recursive
-
-      - name: Lint
-        run: |
-          docker run --rm --interactive --network host \
-              --name ct-lint \
-              --volume $PWD:/workdir \
-              --workdir /workdir/charts/devlake \
-              quay.io/helmpack/chart-testing:v3.4.0 sh -c 'helm dependency update \
-               && cd ../.. \
-               && helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart \
-               && ct lint \
-                  --charts charts/devlake'
-
-      - name: fix permissions
-        run: |
-          sudo mkdir -p $HOME/.kube
-          sudo chmod -R 777 $HOME/.kube
-
-      - name: Create Kubernetes ${{ matrix.k8s }} cluster
-        id: kind
-        uses: ./.github/actions/setup-kind
-        with:
-          version: v0.11.0
-          config: test/e2e/kind.yaml
-          image: kindest/node:${{ matrix.k8s }}
-
-      - name: Test
-        env:
-          KIND_CLUSTER_NAME: kind
-          SKIP_CLUSTER_CREATION: true
-        run: |
-          kind get kubeconfig > $HOME/.kube/kind-config-kind
-          docker run --rm --interactive --network host \
-              --name ct \
-              --volume $HOME/.kube/kind-config-kind:/root/.kube/config \
-              --volume $PWD:/workdir \
-              --workdir /workdir/charts/devlake \
-              quay.io/helmpack/chart-testing:v3.4.0 sh -c 'helm dependency update \
-               && cd ../.. \
-               && helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart \
-               && ct install \
-                  --charts charts/devlake'