Skip to content

Duplicate Issue to Dev Dashboard #31

Duplicate Issue to Dev Dashboard

Duplicate Issue to Dev Dashboard #31

name: Duplicate Issue to Dev Dashboard
on:
issues:
types: [opened]
jobs:
duplicate_issue:
name: duplicate_issue
runs-on: ubuntu-latest
steps:
- run: |
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 }}