Feat: add allowMergeableBypassForPrApply to organization policy (#1081) #770
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: Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| GO_VERSION: "1.26" | |
| jobs: | |
| generate-docs: | |
| name: Generate Docs | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.ENV0_BOT_PAT }} | |
| - name: Unshallow | |
| run: git fetch --prune --unshallow | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "${{ env.GO_VERSION }}" | |
| - name: Update generated docs | |
| run: ./generate-docs.sh | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| author_name: update generated docs action | |
| author_email: mail@example.com | |
| message: "Update docs" | |
| add: "docs/*" |