diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-09 09:27:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-09 09:27:51 +0800 |
commit | 8afdc1f3867a620c8235b3d3964b019b94657190 (patch) | |
tree | 12c19ea2464d29a37b42d67ff656d2679d21eae6 | |
parent | fdb11888f5506fc110247efe789ebe429b3deaaf (diff) | |
download | rneovim-8afdc1f3867a620c8235b3d3964b019b94657190.tar.gz rneovim-8afdc1f3867a620c8235b3d3964b019b94657190.tar.bz2 rneovim-8afdc1f3867a620c8235b3d3964b019b94657190.zip |
ci(labeler): run "type-scope" after "triage"
Problem: When "triage" job is run after "type-scope" job, it may
remove labels added by the "type-scope" job.
Solution: Run "type-scope" job after "triage" job.
-rw-r--r-- | .github/workflows/labeler.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index e4dadb930e..52682d93dd 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -14,6 +14,7 @@ jobs: sync-labels: "" type-scope: + needs: triage runs-on: ubuntu-latest permissions: contents: write |