From 3128a4c5c819aba415eba2a289ad9fe9ebc33ea0 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:57 +0200 Subject: [PATCH] Add autobump workflow stub (#2015) --- .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 000000000..f632f99bd --- /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