Yuki Takei 4 лет назад
Родитель
Сommit
2eba26a046
1 измененных файлов с 21 добавлено и 0 удалено
  1. 21 0
      .github/workflows/auto-labeling.yml

+ 21 - 0
.github/workflows/auto-labeling.yml

@@ -0,0 +1,21 @@
+name: Auto Labeling
+
+on:
+  pull_request:
+    branches:
+      - master
+    # Only following types are handled by the action, but one can default to all as well
+    types: [opened, reopened, synchronize]
+
+jobs:
+
+  # Refs: https://github.com/release-drafter/release-drafter
+  auto-labeling:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: release-drafter/release-drafter@v5
+        with:
+          disable-releaser: true
+        env:
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}