WIP: Defer node view loading to speed up opening times (and possibly UX) of large graphs. #2133
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+)' |