Fix calculate training time by summing all elapsed times instead the last one #56623
Workflow file for this run
This file contains hidden or 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
name: Probot | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
required-jobs: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 71 # in case something is wrong with the internal timeout | |
steps: | |
- uses: Lightning-AI/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
job: check-group | |
interval: 180 # seconds | |
timeout: 70 # minutes | |
maintainers: "Lightning-AI/lai-frameworks" | |
owner: "carmocca" |