This action copies issue to another repository by any keyword.
uses: soichisumi/[email protected]
with:
keyword: "/copy"
targetRepository: soichisumi/issue-copy-action
githubToken: ${{ secrets.GITHUB_TOKEN }}
contentOfNewIssue: 'prefix of newly created issue'
Required The repository to which generated issue is copied. format: $OWNER/$REPO_NAME.
Required Set Github Actions's GITHUB_TOKEN or your github token to this input.
optional Keyword to trigger this action. The action is executed in the case of lowercased issue comment matched with lowercased keyword.
Default: /copy
optional Content of newly created issue.
Default: ''
The issue which is created by this action.