aboutsummaryrefslogtreecommitdiff
path: root/@linaria/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '@linaria/.github/workflows/main.yml')
-rw-r--r--@linaria/.github/workflows/main.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/@linaria/.github/workflows/main.yml b/@linaria/.github/workflows/main.yml
new file mode 100644
index 0000000..b2b11fd
--- /dev/null
+++ b/@linaria/.github/workflows/main.yml
@@ -0,0 +1,21 @@
+name: labeler
+on:
+ issues:
+ types: [opened, edited, reopened]
+ pull_request:
+ types: [opened, edited, reopened, ready_for_review, synchronize]
+
+jobs:
+ labeler:
+ runs-on: ubuntu-latest
+ name: label issues and pull requests
+ steps:
+ - name: check-out-repository
+ uses: actions/checkout@v2
+
+ - name: labeler
+ uses: jayu/super-labeler-action@develop
+ env:
+ ACTIONS_STEP_DEBUG: ${{ secrets.ACTIONS_STEP_DEBUG }}
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}