mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 08:05:21 +00:00
Now that the standard GitHub action supports forks, switch to the on-PR action instead of running a cronjob. Reference: https://github.com/actions/labeler/issues/12#issuecomment-670967607 Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
12 lines
215 B
YAML
12 lines
215 B
YAML
name: 'Pull Request Labeler'
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v2.1.1
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|