mirror of
https://github.com/jorijn/meshcore-stats.git
synced 2026-03-28 17:42:55 +01:00
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
name: Release Please
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
# Note: We use a fine-grained PAT (RELEASE_PLEASE_TOKEN) instead of GITHUB_TOKEN
|
|
# because GITHUB_TOKEN cannot trigger other workflows (like docker-publish.yml).
|
|
# This is a GitHub security feature to prevent infinite workflow loops.
|
|
#
|
|
# The PAT requires these permissions (scoped to this repository only):
|
|
# - Contents: Read and write (for creating releases and pushing tags)
|
|
# - Pull requests: Read and write (for creating/updating release PRs)
|
|
#
|
|
# To rotate: Settings > Developer settings > Fine-grained tokens
|
|
# Recommended rotation: Every 90 days
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Release Please
|
|
uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
|
|
with:
|
|
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
|
config-file: release-please-config.json
|
|
manifest-file: .release-please-manifest.json
|