mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 00:05:28 -05:00
25 lines
686 B
YAML
25 lines
686 B
YAML
name: CI - Create CodeSee Maps
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '25 0/12 * * 1-5' # Build once every 12 hours, starting at 25 minutes past the hour (UTC)
|
|
|
|
pull_request_target:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '.gitignore'
|
|
types: [opened, synchronize, reopened]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
codesee:
|
|
runs-on: ubuntu-20.04
|
|
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'camperbot' }}
|
|
continue-on-error: true
|
|
name: Analyze the repo with CodeSee
|
|
steps:
|
|
- uses: Codesee-io/codesee-action@4782354e8e7602f6e4449d1a0ef4dc9341fc95d0 # v2
|
|
with:
|
|
codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
|