From 37f0da78f4047ffe398a3c8658e41526225d1663 Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Wed, 21 Feb 2024 19:04:20 -0400 Subject: [PATCH] Build docs for 13.x (#5878) --- .github/workflows/main.yml | 4 ++-- docs/commands.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3b7d421d4f..5773560442 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,8 +2,8 @@ name: Build docs site on: push: - branches: [11.x, 12.x] - tags: ["11.*", "12.*"] + branches: [11.x, 12.x, 13.x] + tags: ["11.*", "12.*", "13.*"] jobs: build: diff --git a/docs/commands.md b/docs/commands.md index 7ba4121405..46a8b5b8e1 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -56,7 +56,7 @@ The following are both valid ways to declare a command: ``` - A commandfile that will only be used on PHP8+ should [use PHP Attributes](https://github.com/drush-ops/drush/pull/4821) instead of Annotations. -- [See Attributes provided by Drush core](https://www.drush.org/api/Drush/Attributes.html). Custom code can add additional attributes. +- [See Attributes provided by Drush core](https://www.drush.org/api/Drush/Attributes.html). Custom code can supply additional Attribute classes, which may then be used by any command. ## Altering Command Info Drush command info (annotations/attributes) can be altered from other modules. This is done by creating and registering _command info alterers_. Alterers are classes that are able to intercept and manipulate an existing command annotation.