chore: Install the CodeSee workflow. (#26315)
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>
This commit is contained in:
parent
3a320b1ced
commit
c108a31a38
23
.github/workflows/codesee-arch-diagram.yml
vendored
Normal file
23
.github/workflows/codesee-arch-diagram.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# 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
|
||||
Loading…
Reference in New Issue
Block a user