Sync C++ BUILD dependencies with build_cleaner.
#51027
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
| # Labeler labels incoming pull requests. | |
| name: "Labeler" | |
| "on": | |
| - pull_request | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # read labeler config | |
| pull-requests: write # apply labels to the PR | |
| steps: | |
| - uses: actions/labeler@v6 | |
| if: github.base_ref == null | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" |