Don't group timeline items if more than 5 minutes has passed. #8404
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: Danger CI | |
on: | |
pull_request: | |
types: [ labeled, synchronize, opened, reopened ] | |
jobs: | |
build: | |
name: Danger | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
run: | |
brew install danger/tap/danger-swift swiftlint | |
- name: Danger | |
run: | |
danger-swift ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |