build(deps): bump minimatch from 10.0.3 to 10.1.1 #1469
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: Check linked issues | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, reopened, synchronize] | |
| jobs: | |
| check_pull_requests: | |
| runs-on: ubuntu-latest | |
| name: Check | |
| permissions: | |
| issues: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Use the action | |
| uses: ./ # Uses an action in the root directory | |
| id: check | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| exclude-branches: "release/**, dependabot/**" | |
| # Use the output from the `check` step | |
| - name: Get the output | |
| run: echo "Has linked issues? ${{ steps.check.outputs.linked_issues_count }}" |