From 3f758cdb9adb0bac9f29bc29cd4a67f832e54b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Fri, 29 Jul 2022 12:18:47 +0200 Subject: [PATCH] Add version autobump stub (#3194) --- .github/workflows/version-auto-bump.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/version-auto-bump.yml diff --git a/.github/workflows/version-auto-bump.yml b/.github/workflows/version-auto-bump.yml new file mode 100644 index 0000000000..f632f99bd4 --- /dev/null +++ b/.github/workflows/version-auto-bump.yml @@ -0,0 +1,15 @@ +name: Version Auto Bump + +on: + # For testing only + workflow_dispatch: + inputs: {} + +jobs: + + setup: + name: "Setup" + runs-on: ubuntu-20.04 + steps: + - name: Stub for testing + run: echo "this is a stub" \ No newline at end of file