Revert "ci: add CodeQL code scanning for Go" #22
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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Default to least-privilege; release-please opts in to write below. | |
| permissions: | |
| contents: read | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # to create release commits and tags | |
| pull-requests: write # to open the release-please PR | |
| steps: | |
| - uses: googleapis/release-please-action@5792afc6b46e9bb55deda9eda973a18c226bc3fc # v4.1.5 | |
| with: | |
| release-type: go | |
| # Token is provided by Actions; only override if a fine-grained PAT is required. | |
| token: ${{ secrets.GITHUB_TOKEN }} |