[feedback]: Add support for JSON5 input in the Body JSON editor #107
This file contains hidden or 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: ClickUp task creation | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| clickup-task: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '16' | |
| - run: npm ci | |
| - run: node scripts/create-task.js | |
| env: | |
| # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#issues | |
| ISSUE_ID: '${{ github.event.issue.number }}' | |
| ISSUE_TITLE: '${{ github.event.issue.title }}' | |
| ISSUE_URL: '${{ github.event.issue.html_url }}' | |
| ISSUE_DESCRIPTION: '${{ github.event.issue.body }}' | |
| CLICKUP_API_KEY: '${{ secrets.CLICKUP_API_KEY }}' | |
| CLICKUP_LIST_ID: '${{ secrets.CLICKUP_LIST_ID }}' |