Skip to content

Commit 2decdd1

Browse files
committed
chore: add no-op github workflow
This PR adds a basic workflow that doesn't do anything yet, so actions can run after a rekres. Signed-off-by: Spencer Smith <spencer.smith@talos-systems.com>
1 parent 77d7adc commit 2decdd1

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: default
2+
"on":
3+
push:
4+
branches:
5+
- main
6+
tags:
7+
- v*
8+
pull_request: {}
9+
env:
10+
CI_ARGS: --cache-from=type=registry,ref=registry.dev.siderolabs.io/${GITHUB_REPOSITORY}:buildcache --cache-to=type=registry,ref=registry.dev.siderolabs.io/${GITHUB_REPOSITORY}:buildcache,mode=max
11+
jobs:
12+
default:
13+
permissions:
14+
contents: write
15+
packages: write
16+
runs-on: self-hosted
17+
steps:
18+
- name: checkout
19+
uses: actions/checkout@v3

0 commit comments

Comments
 (0)