chore: bump nock from 14.0.10 to 14.0.11 #51514
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: Link and Lint PR with Jira Ticket Number | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| merge_group: | |
| branches: [dev] | |
| jobs: | |
| add-jira-description: | |
| # On merge_group there is no pull request payload; keep the required check green there. | |
| if: ${{ github.event_name == 'merge_group' || (github.actor != 'dependabot[bot]' && github.actor != 'otto-the-bot') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Skip on merge queue | |
| if: ${{ github.event_name == 'merge_group' }} | |
| run: echo "Skipping Jira pull request description validation on merge queue." | |
| - uses: cakeinpanic/jira-description-action@master | |
| if: ${{ github.event_name == 'pull_request' }} | |
| name: jira-description-action | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| jira-token: ${{ secrets.JIRA_TOKEN }} | |
| jira-base-url: https://wearezeta.atlassian.net | |
| skip-branches: '^(dev|master|release\/*)$' | |
| fail-when-jira-issue-not-found: true |