forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Add release-please automation with VERSION
* Add VERSION file that Zephyr will pick up * Add release-please automation * Updated docs on commits messages, and PR process * Updated PR template to match. --- Co-authored-by: Cem Aksoylar <[email protected]> Release-As: 0.1.0
- Loading branch information
1 parent
f8eff2f
commit 36a4d31
Showing
8 changed files
with
112 additions
and
20 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 |
---|---|---|
@@ -1,15 +1,8 @@ | ||
<!-- If you're adding a board/shield please fill out this check-list, otherwise you can delete it --> | ||
<!-- Note: ZMK is generally not accepting PRs for new keyboards. New generic controller PRs *may* still be accepted, please discuss on the Discord server first. --> | ||
|
||
## Board/Shield Check-list | ||
## PR check-list | ||
|
||
- [ ] This board/shield is tested working on real hardware | ||
- [ ] Definitions follow the general style of other shields/boards upstream ([Reference](https://zmk.dev/docs/development/new-shield)) | ||
- [ ] `.zmk.yml` metadata file added | ||
- [ ] Branch has a [clean commit history](https://zmk.dev/docs/development/contributing/pull-requests#clean-commit-history) | ||
- [ ] Additional tests are included, if changing behaviors/core code that is testable. | ||
- [ ] Proper Copyright + License headers added to applicable files (Generally, we stick to "The ZMK Contributors" for copyrights to help avoid churn when files get edited) | ||
- [ ] General consistent formatting of DeviceTree files | ||
- [ ] Keymaps do not use deprecated key defines (Check using the [upgrader tool](https://zmk.dev/docs/codes/keymap-upgrader)) | ||
- [ ] `&pro_micro` used in favor of `&pro_micro_d/a` if applicable | ||
- [ ] If split, no name added for the right/peripheral half | ||
- [ ] Kconfig.defconfig file correctly wraps _all_ configuration in conditional on the shield symbol | ||
- [ ] `.conf` file has optional extra features commented out | ||
- [ ] Keyboard/PCB is part of a shipped group buy or is generally available in stock to purchase (OSH/personal projects without general availability should create a zmk-config repo instead) | ||
- [ ] [Pre-commit](https://zmk.dev/docs/development/local-toolchain/pre-commit) used to check formatting of files, commit messages, etc. |
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,38 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- "v*.*-branch" | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: googleapis/release-please-action@v4 | ||
id: release | ||
with: | ||
token: ${{ secrets.ZMK_RELEASE_PLEASE_TOKEN }} | ||
target-branch: ${{ github.ref_name }} | ||
- uses: actions/checkout@v4 | ||
if: ${{ steps.release.outputs.release_created }} | ||
- name: create major, minor branch | ||
if: ${{ steps.release.outputs.release_created && steps.release.outputs.patch == '0' }} | ||
run: | | ||
git remote add gh-token-branch "https://x-access-token:${{ secrets.ZMK_RELEASE_PLEASE_TOKEN }}@github.com/${{ github.repository }}.git" | ||
git checkout -b v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}-branch | ||
git push gh-token-branch v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}-branch | ||
- name: tag major and minor versions | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
git remote add gh-token "https://x-access-token:${{ secrets.ZMK_RELEASE_PLEASE_TOKEN }}@github.com/${{ github.repository }}.git" | ||
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | ||
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" | ||
git push --force gh-token v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} |
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 |
---|---|---|
|
@@ -16,7 +16,12 @@ repos: | |
rev: v2.7.1 | ||
hooks: | ||
- id: prettier | ||
exclude: ".git/COMMIT_EDITMSG" | ||
exclude: | | ||
(?x)^( | ||
.git/COMMIT_EDITMSG| | ||
CHANGELOG.md| | ||
.release-please-manifest.json | ||
)$ | ||
# Workaround for https://github.com/pre-commit/mirrors-prettier/issues/29 | ||
additional_dependencies: | ||
- [email protected] | ||
|
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 @@ | ||
{} |
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,13 @@ | ||
# x-release-please-start-major | ||
VERSION_MAJOR = 0 | ||
# x-release-please-end | ||
|
||
# x-release-please-start-minor | ||
VERSION_MINOR = 0 | ||
# x-release-please-end | ||
|
||
# x-release-please-start-patch | ||
PATCHLEVEL = 1 | ||
# x-release-please-end | ||
|
||
VERSION_TWEAK = 0 |
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
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,9 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", | ||
"bootstrap-sha": "2ded7919ebd63e0174bf5a412f6f01d6af0061c6", | ||
"release-type": "simple", | ||
"extra-files": ["app/VERSION"], | ||
"packages": { | ||
".": {} | ||
} | ||
} |