Partial display of the table dedicated to the “Settings” option of the search page in “Mobile site” display mode #37
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: 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.GH_ASANA_SECRET }} | |
asana-project: '414730916066338' | |
action: 'create-asana-issue-task' | |
add-comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- 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' |