feat: Merge the main branch

This commit is contained in:
Pascal Zimmermann
2026-05-21 23:32:20 +02:00
916 changed files with 11563 additions and 7569 deletions
@@ -0,0 +1,9 @@
# null_job_explicit.in.yaml
on: push
jobs:
empty: null
notempty:
needs: empty
runs-on: ubuntu-latest
steps:
- run: echo ok
@@ -0,0 +1,9 @@
# null_job_implicit.in.yaml
on: push
jobs:
empty:
notempty:
needs: empty
runs-on: ubuntu-latest
steps:
- run: echo ok