From 2d3c22f574c214b3f1799b658b8414c9c326ac11 Mon Sep 17 00:00:00 2001 From: anonymous-akorn <66133366+anonymous-akorn@users.noreply.github.com> Date: Thu, 30 Jul 2020 12:15:10 -0700 Subject: [PATCH] Create dummy workflow for integration tests To manually trigger a workflow in a branch, a workflow with the same name needs to exist in master. This adds such a workflow. --- .github/workflows/integration_tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/integration_tests.yml diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml new file mode 100644 index 0000000000..be9f08b114 --- /dev/null +++ b/.github/workflows/integration_tests.yml @@ -0,0 +1,16 @@ +# Dummy workflow file so that the corresponding workflow +# can be manually triggered in branches other than master. +name: Integration tests + +on: + workflow_dispatch: + inputs: + commitId: + description: 'description' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Dummy step + run: echo "Hello, World!"