Skip to content

Commit

Permalink
ci: add force flag for git-filter-repo command
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed May 4, 2023
1 parent 99ba83c commit d4c8a85
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/split_monorepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
targetOrg: open-feature-php
targetRepo: dd-trace-hook
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/DDTrace/'
filterArguments: '--subdirectory-filter hooks/DDTrace/ --force'

split-hook-otel:
runs-on: ubuntu-latest
Expand All @@ -30,7 +30,7 @@ jobs:
targetOrg: open-feature-php
targetRepo: otel-hook
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/OpenTelemetry/'
filterArguments: '--subdirectory-filter hooks/OpenTelemetry/ --force'

split-hook-validator:
runs-on: ubuntu-latest
Expand All @@ -44,7 +44,7 @@ jobs:
targetOrg: open-feature-php
targetRepo: validators-hook
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/Validators/'
filterArguments: '--subdirectory-filter hooks/Validators/ --force'

split-provider-cloudbees:
runs-on: ubuntu-latest
Expand All @@ -58,7 +58,7 @@ jobs:
targetOrg: open-feature-php
targetRepo: cloudbees-provider
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/CloudBees/'
filterArguments: '--subdirectory-filter providers/CloudBees/ --force'

split-provider-flagd:
runs-on: ubuntu-latest
Expand All @@ -72,7 +72,7 @@ jobs:
targetOrg: open-feature-php
targetRepo: flagd-provider
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/Flagd/'
filterArguments: '--subdirectory-filter providers/Flagd/ --force'

split-provider-split:
runs-on: ubuntu-latest
Expand All @@ -86,4 +86,4 @@ jobs:
targetOrg: open-feature-php
targetRepo: split-provider
targetBranch: ${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/Split/'
filterArguments: '--subdirectory-filter providers/Split/ --force'

0 comments on commit d4c8a85

Please sign in to comment.