mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
391d6c6cb2
# Objective - All new PRs should get the "S-Needs-Triage" label. But at the moment we for example are getting quite a few PRs to the new renderer branch that do not get the label. ## Solution - Remove the required target "main" from the workflow - Also removed configuration for not needed functionality of the labeler action (see [docs](https://github.com/actions/labeler#inputs))
15 lines
271 B
YAML
15 lines
271 B
YAML
name: PR-Labeler
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/label-config.yml
|