From e1de805aca6a1622cb5f2ff8bed8be3f6466b284 Mon Sep 17 00:00:00 2001 From: thisisobate Date: Tue, 24 Feb 2026 11:43:57 +0300 Subject: [PATCH 1/2] chore: Add a GH workflow to trigger contribute site Signed-off-by: thisisobate --- .../workflows/trigger-contribute-site-netlify.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/trigger-contribute-site-netlify.yml diff --git a/.github/workflows/trigger-contribute-site-netlify.yml b/.github/workflows/trigger-contribute-site-netlify.yml new file mode 100644 index 0000000..af8e923 --- /dev/null +++ b/.github/workflows/trigger-contribute-site-netlify.yml @@ -0,0 +1,13 @@ +name: Trigger contribute-site Netlify build + +on: + push: + branches: [main] + +jobs: + trigger: + runs-on: ubuntu-latest + steps: + - name: Call Netlify build hook + run: | + curl -sS -X POST "${{ secrets.NETLIFY_CONTRIBUTE_SITE_BUILD_HOOK }}" \ No newline at end of file From f96a0c1135d9f71928e1f3f840cc34a220306b39 Mon Sep 17 00:00:00 2001 From: thisisobate Date: Tue, 24 Feb 2026 11:48:09 +0300 Subject: [PATCH 2/2] chore: prettify code Signed-off-by: thisisobate --- .github/workflows/trigger-contribute-site-netlify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger-contribute-site-netlify.yml b/.github/workflows/trigger-contribute-site-netlify.yml index af8e923..db81972 100644 --- a/.github/workflows/trigger-contribute-site-netlify.yml +++ b/.github/workflows/trigger-contribute-site-netlify.yml @@ -10,4 +10,4 @@ jobs: steps: - name: Call Netlify build hook run: | - curl -sS -X POST "${{ secrets.NETLIFY_CONTRIBUTE_SITE_BUILD_HOOK }}" \ No newline at end of file + curl -sS -X POST "${{ secrets.NETLIFY_CONTRIBUTE_SITE_BUILD_HOOK }}"