Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release Please

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write
issues: write

jobs:
release-please:
name: Release Please
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Run release-please
uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
with:
release-type: simple
target-branch: main
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@
!/.github/dependabot.yml
!/.github/workflows/
!/.github/workflows/release-artifact.yml
!/.github/workflows/release-please.yaml
!/.github/workflows/verify.yml
!/.gitignore
!/.release-please-manifest.json
!/LICENSE
!/Makefile
!/README.md
!/SECURITY.md
!/release-please-config.json

!/bin/
!/bin/secure-packer-bootstrapper
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.0.0"
}
20 changes: 20 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "simple",
"target-branch": "main",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "security", "section": "Security" },
{ "type": "refactor", "section": "Refactoring" },
{ "type": "ci", "section": "CI/CD" },
{ "type": "docs", "section": "Documentation" },
{ "type": "chore", "section": "Chores", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true }
],
"pull-request-title-pattern": "chore: release ${version}",
"include-v-in-tag": true,
"packages": {
".": {}
}
}