maintainers.yaml 718 B

12345678910111213141516171819202122232425262728
  1. name: Ping maintainers
  2. on:
  3. pull_request:
  4. jobs:
  5. maintainer_ping:
  6. runs-on: ubuntu-latest
  7. container: qmkfm/qmk_cli
  8. steps:
  9. - uses: actions/checkout@v2
  10. with:
  11. fetch-depth: 0
  12. - uses: trilom/file-changes-action@v1.2.4
  13. id: file_changes
  14. with:
  15. output: " "
  16. fileOutput: " "
  17. - name: Install dependencies
  18. run: pip3 install -r requirements-dev.txt
  19. - name: Ping maintainers and request reviews
  20. shell: "bash {0}"
  21. run: qmk ping-maintainers --pr ${{ github.event.number }} ${{ steps.file_changes.outputs.files }}