Fix calculate training time by summing all elapsed times instead the last one #2107
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: Label conflicts | |
on: | |
push: | |
branches: ["main"] | |
pull_request_target: | |
types: ["synchronize", "reopened", "opened"] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
triage-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mschilde/auto-label-merge-conflicts@591722e97f3c4142df3eca156ed0dcf2bcd362bd # Oct 25, 2021 | |
with: | |
CONFLICT_LABEL_NAME: "has conflicts" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MAX_RETRIES: 3 | |
WAIT_MS: 5000 |