diff --git a/.github/workflows/github-actions-preflight.yml b/.github/workflows/github-actions-preflight.yml index 8f5c7c46729477aa45a0c25e6d909de64275b300..058d34e86d9fa9d35acedf566678959bf52900e0 100644 --- a/.github/workflows/github-actions-preflight.yml +++ b/.github/workflows/github-actions-preflight.yml @@ -2,23 +2,30 @@ on: [workflow_dispatch] name: GitHub Actions Ipynb for preflight jobs: - ipynb_for_publishing: + preflight: runs-on: ubuntu-latest - name: Ipynb preflight + name: Ipynb for preflight steps: - name: checkout repo uses: actions/checkout@v3 - - name: check notebook + - name: Extract branch name + shell: bash + run: echo "GitHub ref_name ${{ github.ref_name }}" + id: extract_branch + - name: preflight id: preflight uses: c2dh/journal-of-digital-history-ipynb-preflight-action@master with: - notebook: 'author_guideline_template.ipynb' + notebook: 'example/javascript.ipynb' functions: 'checkcitation,checkoutput,checkhtml,checkjavascript,checktags,checkurls' output_md: 'report.md' # Use the output from the `preflight` step - name: Use the output - run: echo "number of cells ${{ steps.preflight.outputs.size }} - output ${{ steps.preflight.outputs.checkmd }}" + run: echo "Notebook path ${{ steps.preflight.outputs.notebook_path }} - workspace ${{ steps.preflight.outputs.workspace }}" - name: commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: file_pattern: '*.md' + - name: Run shell cmd + run: echo "https://github.com/${{github.repository}}/commit/${{github.sha}}/checks/${{github.run_id}}" +