chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 (#661) #113
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 | |
| # Auto-opens / updates a "release PR" that bumps package.json based on | |
| # conventional-commit prefixes since the last release. When that release PR | |
| # is merged, googleapis/release-please-action creates a GitHub release and | |
| # tag, which triggers the existing `release.yml` workflow's `release: | |
| # types: [published]` listener to publish to npm with provenance + cosign | |
| # signing. | |
| # | |
| # This closes the manual-bump gap that left @imdeadpool/guardex@7.0.42 on | |
| # npm long after the repo had shipped further fixes. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| if: github.repository == 'recodeee/gitguardex' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run release-please | |
| uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v4.1.3 | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |