fix: mirror requirements to ExtraResources for backward compatibility… #25
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
| # Setup: Create a fine-grained PAT named RELEASE_TOKEN with: | |
| # - Repository access: this repo only | |
| # - Permissions: Contents (read/write), Pull Requests (read/write) | |
| # Add as repository secret: Settings > Secrets and variables > Actions > RELEASE_TOKEN | |
| name: Release Please | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0 | |
| with: | |
| token: ${{ secrets.RELEASE_TOKEN }} |