From a547493e54f78e6112fa7f42b49f86a59cf87caf Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Tue, 4 Jun 2024 11:00:01 -0700 Subject: [PATCH] GH actions plus conditionals --- .github/workflows/conditional.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/conditional.yml diff --git a/.github/workflows/conditional.yml b/.github/workflows/conditional.yml new file mode 100644 index 0000000..baaba93 --- /dev/null +++ b/.github/workflows/conditional.yml @@ -0,0 +1,14 @@ +--- +name: Testing Conditionals +on: + - push + +jobs: + conditionals: + runs-on: "ubuntu-24.04" + steps: + - run: python3 --version + + - run: echo "Testing conditional" + if: github.repository == 'twin-bridges/gne' +