Skip to content

Having the “Delete” and “Save” buttons side by side is risky #176

Having the “Delete” and “Save” buttons side by side is risky

Having the “Delete” and “Save” buttons side by side is risky #176

name: Asana Integration after Issue opened
on:
issues:
types: [opened, reopened]
jobs:
create-asana-task:
runs-on: ubuntu-latest
steps:
- name: Create Asana task
uses: duckduckgo/[email protected]
with:
asana-pat: ${{ secrets.ASANA_ACCESS_TOKEN }}
asana-project: '414730916066338'
action: 'create-asana-issue-task'
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Render template
id: render_template
uses: chuhlomin/[email protected]
with:
template: .github/issue-reply-template.md
- name: Add comment
uses: peter-evans/[email protected]
with:
issue-number: ${{ github.event.issue.number }}
body-path: '.github/issue-reply-template.md'