From a92bd56465062720741e8b49ea5f5eeb7c7bf78f Mon Sep 17 00:00:00 2001 From: Matt Trachier Date: Fri, 29 Aug 2025 16:24:06 -0500 Subject: [PATCH] fix: hard code the owner and repo name (#132) Signed-off-by: matttrach --- .github/workflows/backport-pr-manual.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backport-pr-manual.yml b/.github/workflows/backport-pr-manual.yml index 636b2b6..3f1a085 100644 --- a/.github/workflows/backport-pr-manual.yml +++ b/.github/workflows/backport-pr-manual.yml @@ -1,4 +1,4 @@ -name: 'Auto Cherry-Pick to Release Branches' +name: 'Manually Cherry-Pick to Release Branches' on: workflow_dispatch: @@ -29,8 +29,8 @@ jobs: with: script: | const execSync = require('child_process').execSync; - const owner = github.repository_owner; - const repo = github.repository; + const owner = "rancher"; + const repo = "terraform-provider-file"; const mergeCommitSha = process.env.MERGE_COMMIT_SHA; const assignees = ['matttrach', 'jiaqiluo', 'HarrisonWAffel'];