mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
798 B
YAML
33 lines
798 B
YAML
name: Weekly Pipeline Report
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- feat/ci-report-tool
|
|
schedule:
|
|
- cron: "0 8 * * 1" # Every Monday at 8:00 AM UTC
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
generate-report:
|
|
name: Generate Pipeline Report
|
|
runs-on: ubuntu-latest
|
|
container: golang:1.25-alpine
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run CI Reporter
|
|
working-directory: tools/ci-reporter
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# Review the pipelines in last 14 days before the dorne logs expire
|
|
run: |
|
|
GOWORK=off go run ./cmd/list-failed-commits \
|
|
--github-token "$GITHUB_TOKEN" \
|
|
--since 14d \
|
|
--max-commits 9999999
|