doc: update links in ci.yml

Updated three GitHub links to avoid redirects.
This commit is contained in:
espi3 2025-01-25 11:21:30 -08:00
parent 0a931a9787
commit 1681c08d42

View file

@ -4,9 +4,9 @@
name: CI name: CI
on: on:
# See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request. # See: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request.
pull_request: pull_request:
# See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push. # See: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#push.
push: push:
branches: branches:
- '**' - '**'
@ -26,7 +26,7 @@ jobs:
name: 'test each commit' name: 'test each commit'
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
if: github.event_name == 'pull_request' && github.event.pull_request.commits != 1 if: github.event_name == 'pull_request' && github.event.pull_request.commits != 1
timeout-minutes: 360 # Use maximum time, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes. Assuming a worst case time of 1 hour per commit, this leads to a --max-count=6 below. timeout-minutes: 360 # Use maximum time, see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes. Assuming a worst case time of 1 hour per commit, this leads to a --max-count=6 below.
env: env:
MAX_COUNT: 6 MAX_COUNT: 6
steps: steps: