2022-09-15 00:08:11 +00:00
|
|
|
name: Probot
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-09-25 12:34:41 +00:00
|
|
|
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
|
2022-09-15 00:08:11 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
required-jobs:
|
|
|
|
runs-on: ubuntu-latest
|
2022-09-15 11:41:25 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
2023-09-25 12:34:41 +00:00
|
|
|
timeout-minutes: 61 # in case something is wrong with the internal timeout
|
2022-09-15 00:08:11 +00:00
|
|
|
steps:
|
2023-10-11 16:10:02 +00:00
|
|
|
- uses: Lightning-AI/probot@v5.4
|
2022-09-15 00:08:11 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2022-09-16 18:12:46 +00:00
|
|
|
job: check-group
|
2023-09-25 12:34:41 +00:00
|
|
|
interval: 180 # seconds
|
|
|
|
timeout: 60 # minutes
|
|
|
|
maintainers: "Lightning-AI/lai-frameworks"
|
|
|
|
owner: "carmocca"
|