fix: hard code the owner and repo name (#132)
Signed-off-by: matttrach <matt.trachier@suse.com>
This commit is contained in:
parent
c57fe6af02
commit
a92bd56465
|
|
@ -1,4 +1,4 @@
|
||||||
name: 'Auto Cherry-Pick to Release Branches'
|
name: 'Manually Cherry-Pick to Release Branches'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
@ -29,8 +29,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const execSync = require('child_process').execSync;
|
const execSync = require('child_process').execSync;
|
||||||
const owner = github.repository_owner;
|
const owner = "rancher";
|
||||||
const repo = github.repository;
|
const repo = "terraform-provider-file";
|
||||||
const mergeCommitSha = process.env.MERGE_COMMIT_SHA;
|
const mergeCommitSha = process.env.MERGE_COMMIT_SHA;
|
||||||
const assignees = ['matttrach', 'jiaqiluo', 'HarrisonWAffel'];
|
const assignees = ['matttrach', 'jiaqiluo', 'HarrisonWAffel'];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue