[HELP] Timeout while waiting for service configuration!, session will use default configuration #484
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
on: | |
issue_comment: | |
types: | |
- created | |
name: Create a comment for ticket in Jira | |
jobs: | |
create-comment-for-ticket-in-jira: | |
if: ${{ !github.event.issue.pull_request }} | |
name: Ticket comment creation | |
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 | |
uses: peter-evans/find-comment@v2 | |
id: find_comment | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
comment-author: 'github-actions[bot]' | |
direction: first | |
nth: 0 | |
- name: Find Jira ticket | |
if: steps.find_comment.outputs.comment-id != '' | |
id: find_ticket | |
uses: atlassian/gajira-find-issue-key@v3 | |
with: | |
string: ${{ steps.find_comment.outputs.comment-body }} | |
- name: Update Jira ticket | |
if: steps.find_ticket.outputs.issue != '' | |
uses: atlassian/gajira-comment@v3 | |
with: | |
issue: ${{ steps.find_ticket.outputs.issue }} | |
comment: | | |
Github issue was commented by *${{ github.event.comment.user.login }}*: | |
${{ github.event.comment.body }} |