DYN-7310 - Modify Github Crash Report to Allow for "Issue Report" from Help Menu, and "Crash Report" from Crash #2106
Workflow file for this run
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: Jira ticket check | |
on: | |
pull_request_target: | |
types: ['opened', 'edited', 'reopened', 'synchronize'] | |
jobs: | |
title: | |
name: Missing Jira ticket check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for ticket | |
uses: neofinancial/ticket-check-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ticketLink: 'https://jira.autodesk.com/browse/DYN-%ticketNumber%' | |
ticketPrefix: 'DYN-' | |
titleRegex: '^DYN-(?<ticketNumber>\d+)' | |
branchRegex: '^DYN-(?<ticketNumber>\d+)' | |
bodyRegex: 'DYN-(?<ticketNumber>\d+)' | |
bodyURLRegex: 'http(s?):\/\/(jira.autodesk.com)(\/browse)\/(DYN\-)(?<ticketNumber>\d+)' |