mirror of https://github.com/jetkvm/kvm.git
Compare commits
13 Commits
d2965dea6e
...
2c74971b3d
| Author | SHA1 | Date |
|---|---|---|
|
|
2c74971b3d | |
|
|
74e64f69a7 | |
|
|
eb68c0ea5f | |
|
|
57fbee1490 | |
|
|
0e65c0a9a9 | |
|
|
2dafb5c9c1 | |
|
|
566305549f | |
|
|
1505c37e4c | |
|
|
564eee9b00 | |
|
|
fab575dbe0 | |
|
|
97958e7b86 | |
|
|
2f7042df18 | |
|
|
2cadda4e00 |
|
|
@ -0,0 +1,9 @@
|
|||
Fixes #<issue-number>
|
||||
|
||||
### Summary
|
||||
- What changed and why in 1–3 sentences.
|
||||
|
||||
### Checklist
|
||||
- [ ] Linked to issue(s) above by issue number (e.g. `Closes #<issue-number>`)
|
||||
- [ ] One problem per PR (no unrelated changes)
|
||||
- [ ] Lints pass; CI green
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
Closes #<issue-number>
|
||||
|
||||
### Summary
|
||||
|
||||
- What and why in 1–3 sentences.
|
||||
|
||||
### UI Changes
|
||||
|
||||
- Add before/after images or a short clip.
|
||||
|
||||
### Checklist
|
||||
|
||||
- [ ] Linked to issue(s) above by issue number (e.g. `Closes #<issue-number>`)
|
||||
- [ ] One problem per PR (no unrelated changes)
|
||||
- [ ] Lints pass; CI green
|
||||
- [ ] Tricky parts are commented in code
|
||||
- [ ] Backward compatible with existing device firmware (See `DEVELOPMENT.md` for details)
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
name: Push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04]
|
||||
go: [1.21, 1.23.4]
|
||||
node: [21]
|
||||
goos: [linux]
|
||||
goarch: [arm]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- name: Install Dependencies
|
||||
working-directory: ui
|
||||
run: npm ci
|
||||
|
||||
- name: Build UI
|
||||
working-directory: ui
|
||||
run: npm run build:device
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: ${{ matrix.go }}
|
||||
|
||||
- name: Install Go Dependencies
|
||||
run: |
|
||||
go mod download
|
||||
|
||||
- name: Build Binaries
|
||||
env:
|
||||
GOOS: ${{ matrix.goos }}
|
||||
GOARCH: ${{ matrix.goarch }}
|
||||
run: |
|
||||
GOOS=linux GOARCH=arm GOARM=7 go build -ldflags="-s -w -X kvm.builtAppVersion=dev-${GIT_COMMIT:0:7}" -o bin/jetkvm_app cmd/main.go
|
||||
chmod 755 bin/jetkvm_app
|
||||
|
||||
- name: Upload Debug Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
if: ${{ (github.ref == 'refs/heads/main' || github.event_name == 'pull_request') && matrix.go == '1.21' }}
|
||||
with:
|
||||
name: jetkvm_app_debug
|
||||
path: bin/jetkvm_app
|
||||
|
||||
comment:
|
||||
name: Comment
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Generate Links
|
||||
id: linksa
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
ARTIFACT_ID=$(gh api repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts --jq '.artifacts[0].id')
|
||||
echo "ARTIFACT_URL=https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/$ARTIFACT_ID" >> $GITHUB_ENV
|
||||
echo "LATEST_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
||||
|
||||
- name: Comment on PR
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
TITLE="${{ github.event.pull_request.title }}"
|
||||
PR_NUMBER=${{ github.event.pull_request.number }}
|
||||
else
|
||||
TITLE="main branch"
|
||||
fi
|
||||
|
||||
COMMENT=$(cat << EOF
|
||||
✅ **Build successfully for $TITLE!**
|
||||
|
||||
| Name | Link |
|
||||
|------------------|----------------------------------------------------------------------|
|
||||
| 🔗 Debug Binary | [Download](${{ env.ARTIFACT_URL }}) |
|
||||
| 🔗 Latest commit | [${{ env.LATEST_COMMIT }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }}) |
|
||||
EOF
|
||||
)
|
||||
|
||||
# Post Comment
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
# Look for an existing comment
|
||||
COMMENT_ID=$(gh api repos/${{ github.repository }}/issues/$PR_NUMBER/comments \
|
||||
--jq '.[] | select(.body | contains("✅ **Build successfully for")) | .id')
|
||||
|
||||
if [ -z "$COMMENT_ID" ]; then
|
||||
# Create a new comment if none exists
|
||||
gh pr comment $PR_NUMBER --body "$COMMENT"
|
||||
else
|
||||
# Update the existing comment
|
||||
gh api repos/${{ github.repository }}/issues/comments/$COMMENT_ID \
|
||||
--method PATCH \
|
||||
-f body="$COMMENT"
|
||||
fi
|
||||
else
|
||||
# Log the comment for main branch
|
||||
echo "$COMMENT"
|
||||
fi
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-22.04
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 21
|
||||
|
||||
- name: Install Dependencies
|
||||
working-directory: ui
|
||||
run: npm ci
|
||||
|
||||
- name: Build UI
|
||||
working-directory: ui
|
||||
run: npm run build:device
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.21
|
||||
|
||||
- name: Build Release Binaries
|
||||
env:
|
||||
REF: ${{ github.ref }}
|
||||
run: |
|
||||
GOOS=linux GOARCH=arm GOARM=7 go build -ldflags="-s -w -X kvm.builtAppVersion=${REF:11}" -o bin/jetkvm_app cmd/main.go
|
||||
chmod 755 bin/jetkvm_app
|
||||
|
||||
- name: Create checksum
|
||||
env:
|
||||
REF: ${{ github.ref }}
|
||||
run: |
|
||||
SUM=$(shasum -a 256 bin/jetkvm_app | cut -d ' ' -f 1)
|
||||
echo -e "\n#### SHA256 Checksum\n\`\`\`\n$SUM bin/jetkvm_app\n\`\`\`\n" >> ./RELEASE_CHANGELOG
|
||||
echo -e "$SUM bin/jetkvm_app\n" > checksums.txt
|
||||
|
||||
- name: Create Release Branch
|
||||
env:
|
||||
REF: ${{ github.ref }}
|
||||
run: |
|
||||
BRANCH=release/${REF:10}
|
||||
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git config --local user.name "github-actions[bot]"
|
||||
git checkout -b ${BRANCH}
|
||||
git push -u origin ${BRANCH}
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
draft: true
|
||||
prerelease: ${{ contains(github.ref, 'rc') || contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
|
||||
body_path: ./RELEASE_CHANGELOG
|
||||
|
||||
- name: Upload JetKVM binary
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: bin/jetkvm_app
|
||||
asset_name: jetkvm_app
|
||||
asset_content_type: application/octet-stream
|
||||
|
||||
- name: Upload checksum
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./checksums.txt
|
||||
asset_name: checksums.txt
|
||||
asset_content_type: text/plain
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
name: Close stale issues and PRs (dry-run)
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 1 * * *' # Runs daily at 01:30 UTC
|
||||
workflow_dispatch: # Allow manual runs from the Actions tab
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v10
|
||||
with:
|
||||
# ──────────────────────────────────────────────────────────────────────
|
||||
# OVERVIEW — HOW THIS WORKS
|
||||
# 1) The job scans issues/PRs once per run.
|
||||
# 2) If an item has had no activity for `days-before-stale`, it’s labeled `Stale`
|
||||
# and receives the relevant “stale” comment.
|
||||
# 3) If there’s still no activity for `days-before-close` AFTER being marked
|
||||
# stale, the item is closed and receives a closing comment.
|
||||
# 4) Any new activity (comment, label change, commit, edit) clears `Stale`
|
||||
# and resets the timers if `remove-stale-when-updated` is true.
|
||||
# ──────────────────────────────────────────────────────────────────────
|
||||
|
||||
# ── TIMING / BEHAVIOR ────────────────────────────────────────────────
|
||||
# Number of idle days before applying the `Stale` label + stale comment.
|
||||
days-before-stale: 60
|
||||
|
||||
# Number of days AFTER staling with no activity before auto-closing.
|
||||
# (Measured from when `Stale` was added.) Set to -1 to never auto-close.
|
||||
days-before-close: 14
|
||||
|
||||
# If someone comments/updates, automatically remove `Stale` and reset timers.
|
||||
remove-stale-when-updated: true
|
||||
|
||||
# Don’t nag draft PRs; they are explicitly a work-in-progress stage.
|
||||
exempt-draft-pr: true
|
||||
|
||||
# Fetch ordering when scanning items. `updated` helps focus on the most recently touched.
|
||||
sort-by: updated
|
||||
|
||||
# ── MESSAGES (markdown) ──────────────────────────────────────────────
|
||||
stale-issue-message: |
|
||||
**This issue has been inactive for 60 days and is now marked as stale.**
|
||||
|
||||
To keep the tracker focused, older inactive issues are flagged.
|
||||
|
||||
If this still applies:
|
||||
- Add a comment with **reproduction steps**, **environment details**, and **JetKVM version**.
|
||||
- Verify whether it still occurs with the current build: see [OTA / Updates](https://jetkvm.com/docs/advanced-usage/ota-updates).
|
||||
- Any new comment or update will remove the *Stale* label automatically.
|
||||
|
||||
Issues not updated within 14 days after being marked stale may be closed.
|
||||
|
||||
stale-pr-message: |
|
||||
**This pull request has been inactive for 60 days and is now marked as stale.**
|
||||
|
||||
To continue:
|
||||
- Push a commit or add a comment about next steps — this removes the *Stale* label automatically.
|
||||
- Ensure the changes work with the current build: see [OTA / Updates](https://jetkvm.com/docs/advanced-usage/ota-updates).
|
||||
- If this is blocked or awaiting review, mention that for visibility.
|
||||
|
||||
PRs not updated within 14 days after being marked stale may be closed.
|
||||
|
||||
close-issue-message: |
|
||||
**Closing this issue due to extended inactivity.**
|
||||
|
||||
It has been 14 days since it was marked as stale without further updates.
|
||||
|
||||
If the problem persists:
|
||||
- Reopen this issue, or open a new one with **reproduction steps**, **logs**, **environment**, and **JetKVM version**.
|
||||
- Confirm behavior with the current build: [OTA / Updates](https://jetkvm.com/docs/advanced-usage/ota-updates).
|
||||
|
||||
close-pr-message: |
|
||||
**Closing this pull request due to extended inactivity.**
|
||||
|
||||
It has been 14 days since it was marked as stale with no updates or commits.
|
||||
|
||||
If the changes are still relevant:
|
||||
- Reopen this PR or submit a refreshed PR rebased on the latest code.
|
||||
- Confirm that it builds and works with the current build: [OTA / Updates](https://jetkvm.com/docs/advanced-usage/ota-updates).
|
||||
|
||||
# ── SAFETY / ROLLOUT ────────────────────────────────────────────────
|
||||
# DRY-RUN: log what would happen, but do NOT write labels/comments/close.
|
||||
debug-only: true
|
||||
|
||||
# Print a summary of how many items were staled/closed (or would be, in dry-run).
|
||||
enable-statistics: true
|
||||
|
||||
# Limit GitHub API operations per run (gentle start for large repos).
|
||||
# Increase later (e.g., 200–1000) once you’re confident with behavior.
|
||||
operations-per-run: 50
|
||||
|
||||
# ── LABELS ───────────────────────────────────────────────────────────
|
||||
# Names of the labels applied when staling items. Defaults shown for clarity.
|
||||
stale-issue-label: 'Stale'
|
||||
stale-pr-label: 'Stale'
|
||||
Loading…
Reference in New Issue