DYN-10091: Add Geometry.ProjectPointsOnto docs and icons #5751
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
| 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+)' |