labeler.yml 512 B

12345678910111213141516
  1. name: Pull Request Labeler
  2. # This workflow is supposed to run every 5 minutes
  3. on:
  4. schedule:
  5. - cron: '*/20 * * * *'
  6. jobs:
  7. triage:
  8. name: Update PR Labels
  9. runs-on: ubuntu-latest
  10. steps:
  11. - if: github.repository == 'jupyterlab/jupyterlab'
  12. uses: paulfantom/periodic-labeler@dffbc90404f371f76444a69221c2f7ad079e2319
  13. env:
  14. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  15. GITHUB_REPOSITORY: ${{ github.repository }}
  16. LABEL_MAPPINGS_FILE: .github/labeler.yml