From 6129ad8804c76fd63d644721cba3833bdc105f46 Mon Sep 17 00:00:00 2001 From: Stephen Hlotyak Date: Mon, 4 Apr 2022 15:59:05 -0400 Subject: [PATCH] rename markdown update file --- .github/workflows/updatemarkdown.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/updatemarkdown.yml diff --git a/.github/workflows/updatemarkdown.yml b/.github/workflows/updatemarkdown.yml new file mode 100644 index 0000000..a28dcfc --- /dev/null +++ b/.github/workflows/updatemarkdown.yml @@ -0,0 +1,22 @@ +name: update-markdown + +on: + workflow_run: + workflows: + - package-analyzer-build + types: + - completed + +jobs: + auto-update-readme: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.workflow_run.head_branch }} + - run: git branch + + - name: Run Autodocs + uses: dineshsonachalam/markdown-autodocs@v1.0.4 + with: + categories: '[code-block]' \ No newline at end of file