chore(deps): update rig-core requirement from 0.15.1 to 0.23.0 #425
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: Auto Label PR | |
| on: | |
| # Runs workflow when activity on a PR in the workflow's repository occurs. | |
| pull_request_target: | |
| jobs: | |
| auto-label: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| name: Assign labels | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| # Required by gh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| # Auto-include paths starting with dot (e.g. .github) | |
| dot: true | |
| # Remove labels when matching files are reverted or no longer changed by the PR | |
| sync-labels: true |