Expression template support for title and copyright decorations #1012
Workflow file for this run
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: 📜 Documentation | |
on: | |
pull_request_target: | |
types: | |
- closed | |
- labeled | |
jobs: | |
backport: | |
runs-on: ubuntu-latest | |
name: Create documentation task | |
if: contains(github.event.pull_request.labels.*.name, 'needs documentation') | |
steps: | |
- name: Create task | |
run: | | |
curl -i -X POST \ | |
'https://api.clickup.com/api/v2/list/900400532890/task' \ | |
-H 'Authorization: ${{ secrets.CLICKUP_TOKEN}}' \ | |
-H 'Content-Type: application/json' \ | |
-d '{ | |
"name": "${{ github.context.payload.pull_request.title }}", | |
"description": "Coming from pull request ${{ github.context.payload.pull_request.url }}", | |
"tags": [ | |
"qfield" | |
], | |
"status": "Open" | |
}' |