submit: Recreate navigation comment if deleted externally #1115
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: autofix.ci # needed to securely identify the workflow | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| name: Check out repository | |
| - uses: jdx/mise-action@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Go cache | |
| uses: ./.github/actions/go-cache | |
| - run: mise run generate | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 | |
| with: | |
| fail-fast: true |