From 296e4de7b5012a9268f85625b65381df5fd8fc15 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Tue, 22 Sep 2020 01:00:47 +0200 Subject: [PATCH] CI trigger_website: Fix typo The file ends with .yml not .yaml --- .github/workflows/trigger_website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_website.yml b/.github/workflows/trigger_website.yml index 37222bfe..40d4a4d9 100644 --- a/.github/workflows/trigger_website.yml +++ b/.github/workflows/trigger_website.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Dispatch Event to GitJournal.io - run: 'curl -X POST ''https://api.github.com/repos/GitJournal/gitjournal.io/actions/workflows/main.yaml/dispatches'' -u "vHanda:${{secrets.ACCESS_TOKEN_GITHUB}}" -H "Content-Type: application/json" --data ''{"ref": "master"}''' + run: 'curl -X POST ''https://api.github.com/repos/GitJournal/gitjournal.io/actions/workflows/main.yml/dispatches'' -u "vHanda:${{secrets.ACCESS_TOKEN_GITHUB}}" -H "Content-Type: application/json" --data ''{"ref": "master"}''' env: ACCESS_TOKEN_GITHUB: ${{ secrets.ACCESS_TOKEN_GITHUB }}