Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Latest commit

 

History

History
48 lines (38 loc) · 816 Bytes

README.md

File metadata and controls

48 lines (38 loc) · 816 Bytes

Inspector

Generate text and visual summaries of GitHub Workflows in repos.

This will generate and overview of the entire repository, and individual workflow diagrams for each workflow.

Tagging:

git tag -a -m "Testing Release" v0.5
git push --follow-tags

Usage:

name: Execute Repository Test Action
on:
  push:
    branches:
      - "feature-*"
jobs:
  run_steps:
    runs-on: ubuntu-20.04
    steps:
      - name: Generate CI documentation.
        uses: Compton-NIST/[email protected]

Usage (setting artifact name):

name: Execute Repository Test Action
on:
  push:
    branches:
      - "feature-*"
jobs:
  run_steps:
    runs-on: ubuntu-20.04
    steps:
      - name: Generate CI documentation.
        uses: Compton-NIST/[email protected]
        with:
          artifact_name: _docs