diff --git a/.github/workflows/pr-auto-manager.yml b/.github/workflows/pr-auto-manager.yml index 65314f94b..20059f1cf 100644 --- a/.github/workflows/pr-auto-manager.yml +++ b/.github/workflows/pr-auto-manager.yml @@ -13,9 +13,11 @@ permissions: jobs: label-by-size: name: 🏷️ Label PR by Size + # This job should run after all others, to prevent possible concurrency issues + needs: [label-by-branches, label-by-files, remove-stale-label, check-merge-blocking-labels, write-auto-comments] runs-on: ubuntu-latest # Only needs to run when code is changed - if: github.event.action == 'opened' || github.event.action == 'synchronize' + if: always() && (github.event.action == 'opened' || github.event.action == 'synchronize') # Override permissions, the labeler needs issues write access permissions: