From 5047250ff9fd40684729c1b520c8a49a8480442f Mon Sep 17 00:00:00 2001 From: Tim Collins Date: Tue, 7 Mar 2023 10:19:57 +0000 Subject: [PATCH] ci and release notes paths --- .github/workflows/changelog.yaml | 4 ++-- .github/workflows/ci-build.yaml | 6 +++--- hack/release-notes.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index e9eea357dbe1..8bc728f38a0a 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -13,7 +13,7 @@ jobs: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR - if: github.repository == 'argoproj/argo-workflows' + if: github.repository == 'pipekit/argo-workflows' runs-on: ubuntu-latest name: Generate changelog steps: @@ -30,4 +30,4 @@ jobs: title: 'docs: updated CHANGELOG.md' commit-message: 'docs: updated CHANGELOG.md' branch: create-pull-request/changelog - signoff: true \ No newline at end of file + signoff: true diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index ad7b4934fa53..bff483941044 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -44,7 +44,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . - tags: quay.io/argoproj/argoexec:latest + tags: quay.io/pipekitdev/argoexec:latest outputs: type=docker,dest=/tmp/argoexec_image.tar target: argoexec cache-from: type=gha @@ -221,8 +221,8 @@ jobs: docker pull openapitools/openapi-generator-cli:v5.2.1 & - name: Create links run: | - mkdir -p /home/runner/go/src/github.com/argoproj - ln -s "$PWD" /home/runner/go/src/github.com/argoproj/argo-workflows + mkdir -p /home/runner/go/src/github.com/pipekit + ln -s "$PWD" /home/runner/go/src/github.com/pipekit/argo-workflows - run: make codegen -B STATIC_FILES=false - run: git diff --exit-code diff --git a/hack/release-notes.md b/hack/release-notes.md index 876da8c8ae97..1130edc18b76 100644 --- a/hack/release-notes.md +++ b/hack/release-notes.md @@ -18,7 +18,7 @@ Available via `curl` ```bash # Download the binary -curl -sLO https://github.com/argoproj/argo-workflows/releases/download/${version}/argo-darwin-amd64.gz +curl -sLO https://github.com/pipekit/argo-workflows/releases/download/${version}/argo-darwin-amd64.gz # Unzip gunzip argo-darwin-amd64.gz @@ -39,7 +39,7 @@ Available via `curl` ```bash # Download the binary -curl -sLO https://github.com/argoproj/argo-workflows/releases/download/${version}/argo-linux-amd64.gz +curl -sLO https://github.com/pipekit/argo-workflows/releases/download/${version}/argo-linux-amd64.gz # Unzip gunzip argo-linux-amd64.gz @@ -58,5 +58,5 @@ argo version ```bash kubectl create namespace argo -kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/${version}/install.yaml +kubectl apply -n argo -f https://github.com/pipekit/argo-workflows/releases/download/${version}/install.yaml ```