Skip to content

Commit

Permalink
ci(release): increase commits details in release-please configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
import-benjamin authored Dec 5, 2024
1 parent aa004e1 commit 09e517f
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
release-type: simple

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"
}
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ sudo apt install stow ansible git
```

## Install tools using ansible-pull

<!-- x-release-please-start-version -->
```bash
ANSIBLE_FORCE_COLOR=True ansible-pull \
ansible-pull \
--url https://github.com/import-benjamin/.dotfiles.git \
--checkout v1.0.0\
--inventory localhost, \
--connection local \
playbook.yml
```
<!-- x-release-please-end -->


## Install configuration files
Expand Down
78 changes: 78 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"commit-search-depth": 200,
"prerelease": true,
"packages": {
".": {
"release-type": "simple",
"extra-files": [
"README.md"
],
"changelog-sections": [
{
"type": "feat",
"hidden": false
},
{
"type": "change",
"hidden": false
},
{
"type": "deprecate",
"hidden": false
},
{
"type": "remove",
"hidden": false
},
{
"type": "fix",
"hidden": false
},
{
"type": "revert",
"hidden": false
},
{
"type": "security",
"hidden": false
},
{
"type": "perf",
"hidden": false
},
{
"type": "refactor",
"hidden": false
},
{
"type": "style",
"hidden": false
},
{
"type": "build",
"hidden": false
},
{
"type": "chore",
"hidden": false
},
{
"type": "deps",
"hidden": true
},
{
"type": "ci",
"hidden": true
},
{
"type": "test",
"hidden": false
},
{
"type": "docs",
"hidden": false
}
]
}
}
}

0 comments on commit 09e517f

Please sign in to comment.