Add an action to the newly introduced FloatingDateBadge that scrolls the timeline to that day. #11039
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 ] | |
| permissions: {} | |
| jobs: | |
| build: | |
| name: Danger | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| concurrency: | |
| # Only allow a single run of this workflow on each branch, automatically cancelling older runs. | |
| group: ${{ format('danger-ci-{0}', github.ref) }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Danger | |
| uses: danger/swift@434d7c25f3b02d490a340b23f5e78dd15a5670bc # 3.22.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |