Skip to content

Commit 55bab59

Browse files
stubbiclaude
andauthored
fix(ci): drop --remote from gh repo fork in operatorhub-submit (#29)
## Summary Newer \`gh\` CLI rejects \`--remote\` when a repository argument is given: \`\`\` the --remote flag is unsupported when a repository argument is provided \`\`\` This broke the v0.1.6 OperatorHub auto-submit. \`--clone=true\` with a repo arg already sets up upstream, so \`--remote\` is redundant. ## Test plan - [ ] Re-run \`operatorhub-submit\` workflow against v0.1.6 after merge; expect PR open in k8s-operatorhub/community-operators and redhat-openshift-ecosystem/community-operators-prod Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b1f3f0a commit 55bab59

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/operatorhub-submit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
BRANCH="hermes-operator-v${VERSION}"
6464
6565
gh auth setup-git
66-
gh repo fork k8s-operatorhub/community-operators --clone=true --remote=true -- community-operators
66+
gh repo fork k8s-operatorhub/community-operators --clone=true -- community-operators
6767
cd community-operators
6868
6969
git config user.name "github-actions[bot]"
@@ -151,7 +151,7 @@ jobs:
151151
VERSION="${{ steps.version.outputs.version }}"
152152
BRANCH="hermes-operator-v${VERSION}"
153153
gh auth setup-git
154-
gh repo fork redhat-openshift-ecosystem/community-operators-prod --clone=true --remote=true -- community-operators-prod
154+
gh repo fork redhat-openshift-ecosystem/community-operators-prod --clone=true -- community-operators-prod
155155
cd community-operators-prod
156156
git config user.name "github-actions[bot]"
157157
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

0 commit comments

Comments
 (0)