Duplicate Issue to Dev Dashboard #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Duplicate Issue to Dev Dashboard | ||
on: | ||
issues: | ||
types: [opened] | ||
jobs: | ||
duplicate_issue: | ||
name: duplicate_issue | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: | | ||
Check failure on line 12 in .github/workflows/duplicate_issue.yml GitHub Actions / Duplicate Issue to Dev DashboardInvalid workflow file
|
||
gh issue --repo chain4travel/camino-private-issues \ | ||
create --title "${{ github.event.issue.title }}" --body '${{ github.event.issue.body <br /> This issue is related to public issue https://github.com/chain4travel/camino-public-issues/issues/github.event.issue.number }}' --assignee "mikrub" --label "Public Issue" | ||
env: | ||
GH_TOKEN: ${{ secrets.GIT_PRIVATE_ISSUES_TOKEN }} | ||