mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 07:54:35 +00:00
Add action to labler pull requests on a regular basis. This will replace the current labler implemented in ci-tools and will operate on a schedule rather than on pull request trigger. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
14 lines
343 B
YAML
14 lines
343 B
YAML
name: Pull request labeler
|
|
on:
|
|
schedule:
|
|
- cron: '*/5 * * * *'
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: paulfantom/periodic-labeler@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
LABEL_MAPPINGS_FILE: .github/labeler.yml
|