Initial version of the Hermes self learning agent setup of JR IT Services.

This commit is contained in:
2026-04-21 11:53:29 +02:00
commit 7f9b0e6c5f
31 changed files with 1966 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: repo-check
on:
push:
branches:
- main
- 'feat/**'
- 'fix/**'
- 'docs/**'
- 'chore/**'
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Basic file checks
run: |
test -f README.md
test -f CHANGELOG.md
test -f compose.yaml
test -x scripts/alanctl
test -x scripts/release-check
- name: Shell syntax
run: |
bash -n scripts/alanctl
bash -n scripts/release-check
bash -n scripts/new-release
- name: Compose validation
run: |
docker compose -f compose.yaml config >/dev/null