-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 1.15 KB
/
Copy pathrelease-please.yml
File metadata and controls
38 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
name: Release Please
# Drives semver bumping and CHANGELOG.md generation via the central
# reusable release-please workflow. On every push to main this opens (or
# updates) a `chore(main): release vX.Y.Z` PR with the next version's
# package.json + CHANGELOG bump (computed from Conventional Commits).
#
# Merging that PR tags the release and creates the GitHub Release.
#
# Uses the shared "DevSecNinja Release Please" GitHub App so release PRs
# trigger required CI status checks under branch protection. See:
# https://github.com/DevSecNinja/.github/blob/main/docs/release-please-onboarding.md
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: release-please
cancel-in-progress: false
jobs:
release-please:
# renovate: datasource=github-tags depName=DevSecNinja/.github
uses: DevSecNinja/.github/.github/workflows/release-please.yml@27fd66740c629ea38380dcd3bf93e7bc74c54247 # v1.9.0
permissions:
contents: write
pull-requests: write
with:
app-id: ${{ vars.RELEASE_PLEASE_APP_ID }}
secrets:
app-private-key: ${{ secrets.RELEASE_PLEASE_APP_PRIVATE_KEY }}