Fauna shell add-endpoint gives error: ECONNREFUSED #30
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: Set JIRA ticket to DONE | |
on: | |
issues: | |
types: [closed, deleted] | |
jobs: | |
set_done_for_closed_issued: | |
name: Set JIRA ticket to DONE | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login | |
uses: atlassian/gajira-login@master | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
- name: Find comment with ticket number | |
uses: peter-evans/find-comment@v1 | |
id: comment | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body-includes: Internal ticket number is FE- | |
- name: Get ticket number | |
id: ticket | |
uses: atlassian/gajira-find-issue-key@master | |
with: | |
string: ${{ steps.comment.outputs.comment-body }} | |
- name: Close | |
uses: atlassian/gajira-transition@master | |
with: | |
issue: ${{ steps.ticket.outputs.issue }} | |
transition: "DONE" |