Bump symfony/finder from 6.4.7 to 7.1.6 #806
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
# This workflow attempts to automatically label pull requests by examining labels on linked issues. | |
# For instance, if a PR says it "Fixes #123", and issue #123 is labeled as a Bug, this workflow will | |
# automatically label the PR as a bug as well. | |
name: Auto-label pull requests | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
permissions: | |
pull-requests: write | |
jobs: | |
autolabel: | |
uses: acquia/.github/.github/workflows/autolabel.yml@main | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |