From a60b5d88cfb9d0e79740561dc8de93023086b2f0 Mon Sep 17 00:00:00 2001 From: DigiLive Date: Tue, 27 May 2025 22:02:36 +0200 Subject: [PATCH] Add trigger The workflow for deploying the documentation wasn't triggered on PRs. In that case, the PR's status check will keep waiting infinitely. --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/deploy-docs.yml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 671058c..662989c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ -# Please click the `Preview` tab and select the type of Pull Request you are submitting +# Click the `Preview` tab and select the type of Pull Request you are submitting - [Bug Fix](?expand=1&template=bugfix.md) - [Feature](?expand=1&template=feature.md) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index c7c6976..977b691 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -4,6 +4,9 @@ on: push: branches: - main + pull_request: + branches: + - main permissions: contents: write