Skip to content

Commit

Permalink
ci: revert to SSH_PRIVATE_KEY and use custom runner for git-filter-repo
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed May 4, 2023
1 parent ec7dfd1 commit 99ba83c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/split_monorepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-hook-dd-trace
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: dd-trace-hook
targetBranch: ${{ github.event.release.tag_name }}
Expand All @@ -24,9 +24,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-hook-otel
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: otel-hook
targetBranch: ${{ github.event.release.tag_name }}
Expand All @@ -38,9 +38,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-hook-validator
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: validators-hook
targetBranch: ${{ github.event.release.tag_name }}
Expand All @@ -52,9 +52,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-provider-cloudbees
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: cloudbees-provider
targetBranch: ${{ github.event.release.tag_name }}
Expand All @@ -66,9 +66,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-provider-flagd
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: flagd-provider
targetBranch: ${{ github.event.release.tag_name }}
Expand All @@ -80,9 +80,9 @@ jobs:
- name: checkout
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA"
- name: push-provider-split
uses: wmde/git-filter-repo-docker-action@v1
uses: tcarrio/git-filter-repo-docker-action@v1
with:
privateKey: ${{ secrets.GITSPLIT_TOKEN }}
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: split-provider
targetBranch: ${{ github.event.release.tag_name }}
Expand Down

0 comments on commit 99ba83c

Please sign in to comment.