Remove unnecessary comment about exporting metrics without holding a … #571
Workflow file for this run
This file contains hidden or 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: | |
| # workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - master | |
| - main | |
| - develop | |
| name: Verify Existance of Jira Ticket, Design and Test Plan (New) | |
| jobs: | |
| build: | |
| name: Job - Verify Existance of Jira Ticket, Design and Test Plan (New) | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Login | |
| uses: atlassian/gajira-login@master | |
| env: | |
| JIRA_BASE_URL: https://runai.atlassian.net/ | |
| JIRA_USER_EMAIL: jira-bot@run.ai | |
| JIRA_API_TOKEN: ${{ secrets.JIRA_SECRET }} | |
| - name: Find Jira ticket in branch name | |
| id: ticket | |
| uses: run-ai/gajira-find-issue-key@master | |
| with: | |
| from: branch | |
| - name: Verify Jira ticket was found | |
| run: | | |
| if [ -z ${{steps.ticket.outputs.issue}} ]; then | |
| echo "failed to find jira ticket in branch name" | |
| exit 1 | |
| else | |
| echo "found jira ticket: ${{steps.ticket.outputs.issue}}" | |
| fi |