fix: hard code the owner and repo name (#132)

Signed-off-by: matttrach <matt.trachier@suse.com>
This commit is contained in:
Matt Trachier 2025-08-29 16:24:06 -05:00 committed by GitHub
parent c57fe6af02
commit a92bd56465
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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'];