Skip to content

This GitHub Action automatically makes a comment on each pull requests which updates Structurizr diagrams. It's designed to simplify the process of visualizing architecture diagrams changes in your codebase.

License

sebastienfi/structurizr-pr-comment

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Comment on PR with Structurizr Diagrams Action

Introduction

This GitHub Action, designed to complement the Generate Structurizr Diagrams Images from DSL action, automatically comments on pull requests with the previously generated Structurizr diagrams. It ensures that team members can easily review the latest architecture diagrams directly within the context of a PR.

-> See this PR for a demo.

Prerequisites

To use this action effectively, you should have:

  • A GitHub repository.
  • Completed the setup of the "Generate Structurizr Diagrams Images from DSL" action in your repository.

Usage

This action is meant to be used in a separate workflow that triggers after the "Generate Structurizr Diagrams Images from DSL" workflow. To set it up:

  1. Create a workflow file: In your repository's .github/workflows directory, create a new file (e.g., structurizr-diagrams-comment.yml) with the following content:
name: Comment on PR with Structurizr Diagrams

on:
    workflow_run:
        types:
            - completed
        workflows:
            - "Update Structurizr Diagrams"

jobs:
    comment-on-pr:
        if: github.event.workflow_run.conclusion == 'success'
        runs-on: ubuntu-latest
        permissions:
            contents: read # Allow to work with the contents of the repository, including git pull.
            issues: write # Allow to comment on pull requests.
            pull-requests: write # Allow to list and create pr's comments.
        steps:
        - uses: sebastienfi/structurizr-pr-comment@v1
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }} # This token will be used by the action to perform git pull, pr read, pr comment, pr comment edit, pr comment reaction.
            output-path: 'docs/diagrams/' # The output folder for generated images.
  1. Commit the workflow to main and create a PR which include a change in your DSL file.
  2. The action will create a comment on the pull request with the images generated by the "Generate Structurizr Diagrams Images from DSL" action.

How It Works

  • The action triggers after the "Update Structurizr Diagrams" workflow completes.
  • It retrieves information about the PR and lists the generated diagram files.
  • If diagrams are updated, the action posts or updates a comment in the PR with the diagrams.

Contributing

Contributions to improve this action are welcome. Ensure your contributions are well-documented and follow the coding standards of this project.

About

This GitHub Action automatically makes a comment on each pull requests which updates Structurizr diagrams. It's designed to simplify the process of visualizing architecture diagrams changes in your codebase.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published