From 2da08c477aedc62fd9b700bd005594e0dd130f49 Mon Sep 17 00:00:00 2001 From: "Nat Kershaw (MSFT)" Date: Wed, 30 Aug 2023 11:01:54 -0700 Subject: [PATCH] Add website publish placeholder (#17318) --- .github/workflows/publish-gh-pages.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish-gh-pages.yml diff --git a/.github/workflows/publish-gh-pages.yml b/.github/workflows/publish-gh-pages.yml new file mode 100644 index 0000000000000..1818261b4b766 --- /dev/null +++ b/.github/workflows/publish-gh-pages.yml @@ -0,0 +1,16 @@ +# This is a placeholder workflow only. Its purpose is for manual runs to show up +# in the GitHub web UI. It is not used for any automated runs. +name: Publish site + +on: + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + placeholder: + runs-on: ubuntu-latest + steps: + - name: Placeholder step to have workflow included in the GitHub web UI + run: | + echo "Placeholder step to have workflow included in the GitHub web UI" + echo "The actual publish workflow is run from the gh-pages branch"