-
-
Notifications
You must be signed in to change notification settings - Fork 841
23 lines (21 loc) · 672 Bytes
/
Copy pathlabel.yml
File metadata and controls
23 lines (21 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Automatically label PRs every hour based on your .github/labels.yaml:
#
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md
name: "Label PRs from globs"
on:
schedule:
- cron: "0 1 * * *"
jobs:
execute:
runs-on: ubuntu-latest
steps:
- name: Label PRs
uses: jpmcb/prow-github-actions@v1.0.0
with:
jobs: 'pr-labeler'
github-token: "${{ secrets.GITHUB_TOKEN }}"