This pull request adds the CodeSee workflow to your repository. This workflow runs a code analysis on each time: - a new PR is opened - a new commit is pushed to an existing PR - a PR is merged or a new commit is pushed directly to the default branch The analysis enables [code visibility](https://www.codesee.io/what-is-code-visibility) for your codebase: generating maps of your codebase, keeping existing maps up-to-date, and automating code workflows. Access the CodeSee web app at https://app.codesee.io/ or learn more at https://docs.codesee.io. If you have any questions, please reach out to support@codesee.io and we'll be happy to help. Co-authored-by: codesee-maps[bot] <86324825+codesee-maps[bot]@users.noreply.github.com>
24 lines
550 B
YAML
24 lines
550 B
YAML
# This workflow was added by CodeSee. Learn more at https://codesee.io/
|
|
# This is v2.0 of this workflow file
|
|
on:
|
|
push:
|
|
branches:
|
|
- release
|
|
pull_request_target:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
name: CodeSee
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
codesee:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
name: Analyze the repo with CodeSee
|
|
steps:
|
|
- uses: Codesee-io/codesee-action@v2
|
|
with:
|
|
codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
|
|
codesee-url: https://app.codesee.io
|