Skip to content
Draft
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
123 changes: 0 additions & 123 deletions .github/workflows/automated-release.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Release

on:
push:
branches: ["main"]
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: python
config-file: .release-please-config.json
manifest-file: .release-please-manifest.json
25 changes: 25 additions & 0 deletions .release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"release-type": "python",
"include-v-in-tag": true,
"skip-github-release": false,
"skip-github-pull-request": false,
"packages": {
".": {
"release-type": "python",
"pull-request-header": ":robot: Next release",
"pull-request-footer": " ",
"extra-files": [
{
"path": "uv.lock",
"type": "toml",
"jsonpath": "$.package[?(@.name.value=='github-standards')].version"
},
{
"path": "pyproject.toml",
"type": "toml",
"jsonpath": "$.project.version"
}
]
}
}
}
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "v1.3.1"
}
Loading