.bat refs., Activator.bat & README.md updates @ where #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Set up read and write permissions in .yml file (https://github.com/<user>/<repo>/settings/actions) | |
name: Create Diagram | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
jobs: | |
create-diagram: | |
name: Create Diagram | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@main | |
- name: Create images Subdirectory | |
run: mkdir -p ./images | |
- name: Update Diagram | |
uses: githubocto/repo-visualizer@0.8.2 | |
with: | |
excluded_paths: "ignore,.github,dist,node_modules" | |
output_file: "./images/diagram.svg" | |
branch: main |