mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
This pr fixes the failing labeler action labeling pull requests, which was probably broken by renovate when upgrading the action from v4 to v5. I wasn't able to test the configuration, but let's hope it works.
17 lines
404 B
YAML
17 lines
404 B
YAML
# This workflow will triage pull requests and apply a label based on the
|
|
# paths that are modified in the pull request.
|
|
#
|
|
# For more information, see: https://github.com/actions/labeler/blob/master/README.md
|
|
|
|
name: Labeler
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|