mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
7854be7c10
# Objective - update action labeler ## Solution - Update to major version to not get notification update of every patch. - Replace #2338.
18 lines
325 B
YAML
18 lines
325 B
YAML
name: PR-Labeler
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
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
|
|
sync-labels: true
|