-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from ublue-os/check-podman-socket
feat(main): improve usage
- Loading branch information
Showing
6 changed files
with
81 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
enabled: true | ||
titleOnly: true |
This file was deleted.
Oops, something went wrong.
14 changes: 6 additions & 8 deletions
14
.github/workflows/release-please.yml → .github/workflows/generate_changelog.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
name: release-please | ||
|
||
--- | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
checks: write | ||
actions: read | ||
packages: write | ||
pull-requests: write | ||
|
||
name: Generate Changelog | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
releases_created: ${{ steps.release-please.outputs.releases_created }} | ||
tag: ${{ steps.release-please.outputs.tag_name }} | ||
upload_url: ${{ steps.release-please.outputs.upload_url }} | ||
steps: | ||
- uses: google-github-actions/release-please-action@v4 | ||
id: release-please | ||
with: | ||
release-type: simple | ||
package-name: release-please-action | ||
prerelease: true | ||
bump-minor-pre-major: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
<type>(optional scope): <description> | ||
<type>(optional scope): <description> (optional #<issue-id>) | ||
|
||
[optional body] | ||
|
||
[optional footer(s)] | ||
|
||
#### | ||
# Allowed <type> values | ||
# --------------------- | ||
# feat: –> A new feature | ||
# fix: –> Fixed a bug | ||
# refactor: –> A code change that's not mainly a bug or new feature | ||
# docs: –> Documentation only changes | ||
# style: –> Changes to styling like white space, formatting, semi-colons) | ||
# chore: –> Other changes that don't modify src or test files | ||
# ci: –> Changes made to the CI configuration like Travis, Circle, Actions | ||
# revert: –> Revert a previous commit | ||
# test: –> Add or fix tests | ||
#### | ||
# The CHANGELOG.md is built automatically according to the commit | ||
# messages. Commit messages that are not matched will be ignored! | ||
# | ||
# Supported <type> values | ||
# ----------------------- | ||
# feat: --> Features | ||
# fix: --> Bug Fixes | ||
# doc: --> Documentation | ||
# refactor: --> Refactor | ||
# style: --> Styling | ||
# test: --> Testing | ||
# chore: --> Miscellaneous Tasks | ||
# ci --> CI/CD configuration | ||
# revert: --> Revert | ||
# | ||
## Example: feat(parser): add ability to parse arrays | ||
# | ||
#### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters