Compare commits
16 commits
60608bef09
...
0a6db5e96c
Author | SHA1 | Date | |
---|---|---|---|
0a6db5e96c | |||
fa6a6568e7 | |||
93c2e64d32 | |||
abd09df51d | |||
2a8cf62e08 | |||
e9d358bc17 | |||
10e64dad00 | |||
fb066bd620 | |||
ff84b5abe0 | |||
b47a61f590 | |||
c59f0feb45 | |||
e59688cfd4 | |||
557c08998a | |||
f518ae43d9 | |||
61f1a9eb4f | |||
a98092aea6 |
8 changed files with 37 additions and 45 deletions
|
@ -14,19 +14,11 @@ jobs:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Get modified YAML files
|
|
||||||
id: get_changed_files
|
|
||||||
run: |
|
|
||||||
CHANGED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -E '\.(yml)$' || true)
|
|
||||||
echo "CHANGED_FILES=$CHANGED_FILES" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Run yamllint on modified files
|
- name: Show yamllint version
|
||||||
if: env.CHANGED_FILES != ''
|
|
||||||
run: |
|
run: |
|
||||||
yamllint $CHANGED_FILES
|
yamllint --version
|
||||||
env:
|
|
||||||
CHANGED_FILES: ${{ env.CHANGED_FILES }}
|
|
||||||
|
|
||||||
- name: Skip linting if no YAML files are changed
|
- name: Lint .yml files
|
||||||
if: env.CHANGED_FILES == ''
|
run: |
|
||||||
run: echo "No YAML files changed in this PR. Skipping lint."
|
find docker -name "*.yml" -exec yamllint -s -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;
|
||||||
|
|
|
@ -103,4 +103,3 @@ volumes:
|
||||||
ollama:
|
ollama:
|
||||||
external: true
|
external: true
|
||||||
open-webui:
|
open-webui:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
image: codeberg.org/forgejo/forgejo:9.0.2
|
image: codeberg.org/forgejo/forgejo:9.0.3
|
||||||
container_name: forgejo
|
container_name: forgejo
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
|
@ -133,7 +133,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- gitea_main
|
- gitea_main
|
||||||
n8n:
|
n8n:
|
||||||
image: ghcr.io/n8n-io/n8n:1.72.0
|
image: ghcr.io/n8n-io/n8n:1.72.1
|
||||||
container_name: n8n
|
container_name: n8n
|
||||||
ports:
|
ports:
|
||||||
- 5678:5678
|
- 5678:5678
|
||||||
|
|
|
@ -66,6 +66,7 @@ services:
|
||||||
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
|
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/appdata/jellystat/postgres-data:/var/lib/postgresql/data
|
- /docker/appdata/jellystat/postgres-data:/var/lib/postgresql/data
|
||||||
|
|
||||||
jellystat:
|
jellystat:
|
||||||
image: cyfershepard/jellystat:1.1.1
|
image: cyfershepard/jellystat:1.1.1
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue