From 447cedc92ecf877fe7c1e59d0968bafbd40aa388 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 4 May 2026 11:34:39 +0200 Subject: [PATCH] GitHub Actions - comments update --- .github/workflows/build.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c5bbf8b..6f655ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,13 +1,12 @@ -# GitHub Actions Workflow is created for testing and preparing the plugin release in the following steps: -# - Validate Gradle Wrapper. -# - Run 'test' and 'verifyPlugin' tasks. -# - Run the 'buildPlugin' task and prepare artifact for further tests. -# - Run the 'runPluginVerifier' task. -# - Create a draft release. +# GitHub Actions workflow for building, testing, verifying, and preparing plugin release drafts: +# - Build the plugin ZIP with the 'buildPlugin' task and upload it as a workflow artifact. +# - Run the 'check' task and upload test reports on failure. +# - Run the 'verifyPlugin' task and upload Plugin Verifier reports. +# - Create a draft GitHub release on non-pull-request runs. # -# The workflow is triggered on push and pull_request events. +# The workflow is triggered on pushes to the 'main' branch and on pull_request events. # -# GitHub Actions reference: https://help.github.com/en/actions +# GitHub Actions reference: https://docs.github.com/actions # ## JBIJPPTPL