From d7f236f3fb0d91382a328b54ebe791b59c9e1f45 Mon Sep 17 00:00:00 2001 From: Noel Georgi Date: Mon, 11 Sep 2023 19:21:18 +0200 Subject: [PATCH] chore: add a no-op github workflow Add a no-op GitHub workflow file. Signed-off-by: Noel Georgi --- .github/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..05dd981 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: default +"on": + push: + branches: + - main + tags: + - v* + pull_request: {} +env: + 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 +jobs: + default: + permissions: + contents: write + packages: write + runs-on: self-hosted + steps: + - name: checkout + uses: actions/checkout@v3