From 37ad73d8fc7bb07256ffe301eefd92d6ea704863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 22 Apr 2023 00:42:33 +0200 Subject: [PATCH] CI: comment on PR when missing feature/example update (#8222) # Objective - I noticed in a PR that this message wasn't sent when it should have - it was set to watch the status of the wrong step, fix it --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9140b4ec4fd65..f4b890ff8bf33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -259,9 +259,9 @@ jobs: id: missing-metadata run: cargo run -p build-templated-pages -- check-missing examples - name: check for missing update - id: missing-update run: cargo run -p build-templated-pages -- update examples - name: Check for modified files + id: missing-update run: | echo "if this step fails, run the following command and commit the changed file on your PR." echo " > cargo run -p build-templated-pages -- update examples" @@ -293,9 +293,9 @@ jobs: id: missing-features run: cargo run -p build-templated-pages -- check-missing features - name: check for missing update - id: missing-update run: cargo run -p build-templated-pages -- update features - name: Check for modified files + id: missing-update run: | echo "if this step fails, run the following command and commit the changed file on your PR." echo " > cargo run -p build-templated-pages -- update features"