Bump pygraphviz from 1.14 to 2.0.1 #255
This file contains hidden or 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
| name: "Update Examples" | |
| on: | |
| push: | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout repository" | |
| uses: actions/checkout@v4 | |
| - name: "Update examples used in repository" | |
| uses: philippemerle/KubeDiagrams@main | |
| with: | |
| type: "kubernetes" | |
| args: "-o examples/cassandra/cassandra.png examples/cassandra/cassandra.yml" | |
| - name: "Commit changes" | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "chore: update example diagrams" | |
| commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" | |
| file_pattern: "examples/cassandra/*.png" |