Skip to content

update workflow

update workflow #177

Workflow file for this run

name: Cherry Pick Commits on Issue Creation
on:
issues:
types: [opened]
jobs:
cherry-pick:
if: |
github.event.issue.title != '' &&
(
startsWith(github.event.issue.title, 'cprc') ||
startsWith(github.event.issue.title, 'cprelease')
)
uses: https://raw.githubusercontent.com/untillpro/ci-action/master/scripts/.github/workflows/cp.yml@master

Check failure on line 15 in .github/workflows/cp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cp.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
with:
org: 'IVVORG'
repo: 'public-test-repo'
team: 'DevOps_cp'
user: '${{ github.event.issue.user.login }}'
issue: '${{ github.event.issue.number }}'
issue-title: '${{ github.event.issue.title }}'
issue-body: '${{ github.event.issue.body }}'
secrets:
git_token: ${{ secrets.REPOREADING_TOKEN }}