From 044075c7d1c818b8d878e54048bc88958e700e35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:58:20 -0500 Subject: [PATCH] fix: hard code the owner and repo name (#132) (#138) (cherry picked from commit a92bd56465062720741e8b49ea5f5eeb7c7bf78f) Signed-off-by: matttrach Co-authored-by: Matt Trachier --- .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'];