2021-09-19 08:11:30 +02:00
|
|
|
name: Ping maintainers
|
2021-09-19 06:49:40 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2021-09-19 08:11:30 +02:00
|
|
|
maintainer_ping:
|
2021-09-19 06:49:40 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
container: qmkfm/qmk_cli
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- uses: trilom/file-changes-action@v1.2.4
|
|
|
|
id: file_changes
|
|
|
|
with:
|
|
|
|
output: " "
|
|
|
|
fileOutput: " "
|
|
|
|
|
2021-09-19 07:57:07 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pip3 install -r requirements-dev.txt
|
|
|
|
|
2021-09-21 23:28:28 +02:00
|
|
|
- name: Ping maintainers and request reviews
|
2021-09-19 06:49:40 +02:00
|
|
|
shell: "bash {0}"
|
2021-09-21 23:28:28 +02:00
|
|
|
run: qmk ping-maintainers --pr ${{ github.event.number }} ${{ steps.file_changes.outputs.files }}
|