From 2feadaa74eef93dd35f303582f2e82afa62a119d Mon Sep 17 00:00:00 2001 From: Spencer Smith Date: Fri, 8 Sep 2023 08:36:21 -0400 Subject: [PATCH] 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 --- .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 00000000..f69c9248 --- /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 \ No newline at end of file