From ad9f197150fd5a616f680a2a6dcb238e59d7684c Mon Sep 17 00:00:00 2001 From: Alice Cecile Date: Wed, 16 Oct 2024 13:50:39 -0400 Subject: [PATCH] Update label used for breaking changes (#15958) # Objective This label was out-of-date, causing our nag-bot to fail to run. ## Solution Update the workflow with the newly renamed label. Companion to https://github.com/bevyengine/bevy-website/pull/1646. --- .github/workflows/action-on-PR-labeled.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/action-on-PR-labeled.yml b/.github/workflows/action-on-PR-labeled.yml index 18b8cb7b7f..9887494a48 100644 --- a/.github/workflows/action-on-PR-labeled.yml +++ b/.github/workflows/action-on-PR-labeled.yml @@ -14,7 +14,7 @@ permissions: jobs: comment-on-breaking-change-label: runs-on: ubuntu-latest - if: github.event.label.name == 'C-Breaking-Change' && !contains(github.event.pull_request.body, '## Migration Guide') + if: github.event.label.name == 'M-Needs-Migration-Guide' && !contains(github.event.pull_request.body, '## Migration Guide') steps: - uses: actions/github-script@v7 with: