Skip to content
This repository was archived by the owner on Mar 9, 2024. It is now read-only.

Commit 71f7835

Browse files
authored
Label PRs every 15 minutes (workaround github actions access issues)
1 parent 62241e8 commit 71f7835

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

.github/workflows/labeler.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
---
2-
# This workflow will triage pull requests and apply a label based on the
3-
# paths that are modified in the pull request.
4-
#
5-
# To use this workflow, you will need to set up a .github/labeler.yml
6-
# file with configuration. For more information, see:
7-
# https://github.com/actions/labeler/blob/master/README.md
8-
9-
name: Labeler
10-
on: [pull_request]
11-
2+
name: Pull request labeler
3+
on:
4+
schedule:
5+
- cron: '*/15 * * * *'
126
jobs:
13-
label:
7+
labeler:
148
runs-on: ubuntu-latest
159
steps:
16-
- uses: actions/labeler@v2
17-
with:
18-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
10+
- uses: paulfantom/periodic-labeler@master
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
GITHUB_REPOSITORY: ${{ github.repository }}

0 commit comments

Comments
 (0)