From bc85f5132be977bbc5ace5fe01e34cdc77566b5b Mon Sep 17 00:00:00 2001 From: satoru Date: Fri, 13 Aug 2021 15:40:15 +0800 Subject: [PATCH] Integrate Github codebase visualizer into JuiceFS workflow (#731) --- .github/workflows/diagram.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/diagram.yml diff --git a/.github/workflows/diagram.yml b/.github/workflows/diagram.yml new file mode 100644 index 00000000..9ec19112 --- /dev/null +++ b/.github/workflows/diagram.yml @@ -0,0 +1,17 @@ +name: Create diagram +on: + workflow_dispatch: {} + push: + branches: + - main +jobs: + get_data: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Update diagram + uses: githubocto/repo-visualizer@main + with: + excluded_paths: ".github" + output_file: "docs/images/repo-diagram.svg" -- GitLab