Bump just-the-docs from 0.11.1 to 0.12.0 #284
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: Auto Merge PR | ||
| on: | ||
| pull_request_target: | ||
| types: [opened, synchronize, reopened] | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Auto Merge PR | ||
| if: contains(${{ github.event.pull_request.base.ref }}, 'master') | ||
|
Check warning on line 12 in .github/workflows/autoMerge.yml
|
||
| run: | | ||
| echo ${{ secrets.GH_TOKEN }} >> auth.txt | ||
| gh auth login --with-token < auth.txt | ||
| rm auth.txt | ||
| gh pr merge https://github.com/FreeTubeApp/FreeTube-Docs/pull/${{ github.event.pull_request.number }} --auto --squash | ||