Compare commits

..

1 commit

Author SHA1 Message Date
b7baee6281
Init
All checks were successful
Build talosctl+talhelper+sops image (push on main only) / build (push) Successful in 3m19s
2025-11-24 16:17:52 +11:00
3 changed files with 0 additions and 72 deletions

View file

@ -1,24 +0,0 @@
---
name: Checking Renovate configuration
on: # yamllint disable-line rule:truthy
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Cache npm (renovate)
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-renovate
restore-keys: |
${{ runner.os }}-npm-renovate-
- name: Validate Renovate configuration
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
env:
NPM_CONFIG_CACHE: ~/.npm
...

View file

@ -1,18 +0,0 @@
---
name: Checking yaml
on: # yamllint disable-line rule:truthy
pull_request:
jobs:
yamllint:
name: Run yamllint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run YAML linter
uses: bewuethr/yamllint-action@v1
with:
config-file: .yamllint.yaml
...

View file

@ -1,30 +0,0 @@
---
ignore: |
.platformio
secrets.yaml
rules:
braces: enable
brackets: enable
colons: enable
commas: enable
comments: enable
comments-indentation: enable
document-end: enable
document-start: enable
empty-lines:
max: 1
empty-values: disable
hyphens: enable
indentation: enable
key-duplicates: enable
key-ordering: disable
line-length:
max: 100
new-line-at-end-of-file: enable
new-lines: enable
octal-values: enable
quoted-strings: disable
trailing-spaces: enable
truthy: enable
...