Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
8b22b7c
feat(setup): added basic at command (#19)
husamettinarabaci Oct 2, 2025
24c65b2
feat(setup): setted up pre commit hooks (#20)
husamettinarabaci Oct 4, 2025
ee3b66a
feat(setup): setted up pre commit hooks (#21)
husamettinarabaci Oct 5, 2025
3f6af0f
feat(async): setted up async tasks (#23)
husamettinarabaci Oct 15, 2025
a8d51ba
feat(firmware): added basic firmware update (#24)
husamettinarabaci Oct 15, 2025
d5ddb2f
feat(com): passed first communication (#25)
husamettinarabaci Oct 17, 2025
3d8899f
feat(freq): added basic freq handler (#27)
husamettinarabaci Oct 20, 2025
e023c78
feat(core): added multi core (#28)
husamettinarabaci Oct 21, 2025
4128984
feat(core): at command is made by id based (#29)
husamettinarabaci Oct 21, 2025
15c515e
docs(basic): added basic docs Added simple documantation for version …
husamettinarabaci Oct 22, 2025
cd7f82d
Merge remote-tracking branch 'origin/main' into develop
husamettinarabaci Oct 22, 2025
e34edda
feat(multicore): fixed multicore
husamettinarabaci Oct 26, 2025
fb40bd0
feat(multicore): fixed multicore
husamettinarabaci Oct 27, 2025
3839b11
Merge pull request #33 from hTuneSys/main
husamettinarabaci Nov 2, 2025
46fa310
refactor(commitlint): add commitlint config
husamettinarabaci Nov 2, 2025
f4174ad
init(project): auto project adder
husamettinarabaci Nov 29, 2025
d166f21
feat(firmware): migrate AT/SysEx/USB-MIDI to hexaTuneProto shared lib…
husamettinarabaci Mar 4, 2026
064b821
chore(firmware): switch hexa-tune-proto deps from local path to crate…
husamettinarabaci Mar 5, 2026
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
20 changes: 20 additions & 0 deletions .github/workflows/auto-add-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2025 hexaTune LLC
# SPDX-License-Identifier: MIT

name: Auto add issues and PRs to hTuneSys Project 16

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add-to-project:
runs-on: ubuntu-latest

steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/hTuneSys/projects/16
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
58 changes: 58 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# SPDX-FileCopyrightText: 2025 hexaTune LLC
# SPDX-License-Identifier: MIT

name: 🧐 Commit Lint

on:
pull_request:
branches:
- develop
types: [opened, synchronize, edited, reopened, ready_for_review]

permissions:
contents: read
pull-requests: read

jobs:
commitlint:
<<<<<<< Updated upstream
name: Commit Lint (hexaGenMini)
=======
name: Commit Lint (hexaTuneWeb)
>>>>>>> Stashed changes
runs-on: ubuntu-latest
steps:
- name: Checkout (full history)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install commitlint deps
run: |
npm i -D @commitlint/cli @commitlint/config-conventional

- name: Show PR commit range (debug)
shell: bash
run: |
git fetch origin ${{ github.base_ref }} --depth=0
BASE=$(git merge-base HEAD origin/${{ github.base_ref }})
echo "Base ref: ${{ github.base_ref }}"
echo "Merge-base: $BASE"
echo "Commits to lint:"
git log --oneline "$BASE..HEAD"

- name: Lint only commits introduced by this PR
shell: bash
run: |
git fetch origin ${{ github.base_ref }} --depth=0
BASE=$(git merge-base HEAD origin/${{ github.base_ref }})
npx commitlint \
--from "$BASE" \
--to "HEAD" \
--config .github/.commitlintrc.yml \
--verbose
Loading
Loading