From 7989ff16ae07a3ea9e7fe236fdd2c8fc1360b409 Mon Sep 17 00:00:00 2001 From: Tiffany Qi Date: Tue, 10 Oct 2023 11:49:37 -0700 Subject: [PATCH] test init workflow --- .github/workflows/reference-staging.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/reference-staging.yml diff --git a/.github/workflows/reference-staging.yml b/.github/workflows/reference-staging.yml new file mode 100644 index 0000000000..dfe9a337e5 --- /dev/null +++ b/.github/workflows/reference-staging.yml @@ -0,0 +1,23 @@ +name: Create Staging link versions on ReadMe from non-main branches + +on: + # when a PR is created in any branch except main that have made changes to the + # reference folder, run this workflow + push: + branches-ignore: + - main + +jobs: + # //////////////////////////////////////////////////////////////////////// + # Pull Request + # //////////////////////////////////////////////////////////////////////// + + test: + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Run a test command + run: echo "Test workflow is running!"