release: open days older than the first entry ever logged #4

Merged
Kessinen merged 9 commits from dev into main 2026-09-06 08:28:31 +00:00
2 changed files with 22 additions and 16 deletions
Showing only changes of commit c0b48ee71a - Show all commits
+22
View File
@@ -0,0 +1,22 @@
name: check
on:
push:
branches: [dev]
# ponytail: only because Traefik still serves its default self-signed cert for
# git.kessinen.com. Remove once the LE-DNS01-cloudflare runbook has been run.
env:
GIT_SSL_NO_VERIFY: "true"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: make check
-16
View File
@@ -1,16 +0,0 @@
name: demo
on: [push]
# ponytail: GIT_SSL_NO_VERIFY is here only because Traefik still serves its
# default self-signed cert for git.kessinen.com. Remove it once the
# LE-DNS01-cloudflare runbook has been run.
env:
GIT_SSL_NO_VERIFY: "true"
jobs:
check:
runs-on: ubuntu-latest
steps:
- run: echo "hello from ${{ gitea.repository }} on ${{ gitea.ref }}"
- uses: actions/checkout@v4
- run: ls -la && git log --oneline -1