Skip to content

feat: PlantUML画像自動生成用のCI #4

feat: PlantUML画像自動生成用のCI

feat: PlantUML画像自動生成用のCI #4

Workflow file for this run

name: build
on:
push:
paths:
- ./flowchart.puml
branches: [ main ]
tags:
- '**'
pull_request:
branches: [ main ]
#env:
# aaa: bbb
jobs:
generate_plantuml:
runs-on: ubuntu-latest
name: plantuml
steps:
- name: checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: plantuml
id: plantuml
uses: grassedge/[email protected]
with:
path: example
message: "Render PlantUML files"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}