Fix: Adiciona pontuação em texto de Cadastro de Candidates #204
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: Add Asana comment | |
on: | |
pull_request: | |
types: [opened, closed, reopened] | |
jobs: | |
create-comment-in-asana-task-job: | |
runs-on: ubuntu-latest | |
name: Create a comment in Asana Task | |
steps: | |
- name: Create a comment | |
uses: Asana/[email protected] | |
id: createComment | |
with: | |
asana-secret: ${{ secrets.ASANA_SECRET }} | |
comment-text: "{{PR_NAME}} is {{PR_STATE}}: {{PR_URL}}" | |
- name: Get status | |
run: echo "Status is ${{ steps.createComment.outputs.status }}" |