This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
Pull Request Labeler #150950
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Handles labelling of PR's. | |
name: Pull Request Labeler | |
on: | |
schedule: | |
- cron: '*/10 * * * *' | |
concurrency: | |
group: labeller | |
cancel-in-progress: true | |
jobs: | |
labeler: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.3.0 | |
if: github.repository == 'netdata/go.d.plugin' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
LABEL_MAPPINGS_FILE: .github/labeler.yml |