Update CLI docs for 0.2.153 (#800) #318
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: boop-dependabot-in-website | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - .github/workflows/boop-website.yml | |
| jobs: | |
| boop: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/create-github-app-token@v3 | |
| id: app-token | |
| with: | |
| # required | |
| app-id: ${{ secrets.GH_ORG_APP_ID }} | |
| private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }} | |
| owner: ${{ github.repository_owner }} | |
| - name: Send repository_dispatch to website | |
| env: | |
| GH_TOKEN: ${{ steps.app-token.outputs.token }} | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| run: | | |
| gh api --method POST \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ | |
| /repos/${{ github.repository_owner }}/website/dispatches \ | |
| -f event_type='run-dependabot' |