소스 검색

ci: only apply labels when opening a PR

The problem with the default behavior is that it's simply too
aggressive. It will re-apply a label that a maintianer have removed
every time the PR is updated, making it impossible to manually adjust
labels that doesn't fit exactly according to the labeler rules.
dundargoc 2 년 전
부모
커밋
985a8e980a
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      .github/workflows/label.yml

+ 3 - 1
.github/workflows/label.yml

@@ -8,7 +8,9 @@
 # For inspiration see: https://github.com/NixOS/nixpkgs/blob/master/.github/workflows/labels.yml
 
 name: Labeler
-on: [pull_request_target]
+on:
+  pull_request_target:
+    types: [opened]
 
 jobs:
   label: