fix(bugs): sync frontend/package-lock.json so Docker npm ci resolves … #99
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] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: googleapis/release-please-action@v5 | |
| with: | |
| # Default behavior: opens / updates a "release PR" on main. | |
| # Merging that PR cuts a GitHub release, generates a tag, and | |
| # appends a section to CHANGELOG.md based on conventional | |
| # commits since the last release. | |
| release-type: simple | |
| token: ${{ secrets.GITHUB_TOKEN }} |