From a8f517b5b5ae6c6a51937ab3b5b201d9f301a89c Mon Sep 17 00:00:00 2001 From: Tyler Etters Date: Tue, 20 Aug 2024 14:02:27 -0700 Subject: [PATCH] Create trigger-website-build.yml --- .github/workflows/trigger-website-build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/trigger-website-build.yml diff --git a/.github/workflows/trigger-website-build.yml b/.github/workflows/trigger-website-build.yml new file mode 100644 index 0000000..5152583 --- /dev/null +++ b/.github/workflows/trigger-website-build.yml @@ -0,0 +1,19 @@ +name: "Trigger https://norns.community Build" + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + trigger_build_via_norns_community_merge: + runs-on: ubuntu-latest + steps: + - name: "Trigger https://norns.community Build" + run: | + curl -X POST \ + -H "Accept: application/vnd.github.everest-preview+json" \ + -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + -d '{"event_type": "trigger_build_via_norns_community_merge"}' \ + https://api.github.com/repos/monome-community/norns-community/dispatches