We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb41a9c commit 344f1a2Copy full SHA for 344f1a2
.github/pull_request_template.md
@@ -0,0 +1,5 @@
1
+### Description
2
+Please add PR description here, add screenshots if needed
3
+
4
+## Clickup
5
+Please add link here
.github/workflows/pr_size.yml
@@ -0,0 +1,21 @@
+name: Pull Request Labeling
+on: [pull_request]
+jobs:
6
+ size:
7
+ runs-on: ubuntu-latest
8
+ name: Label the PR size
9
+ steps:
10
+ - uses: "pascalgn/size-label-action@v0.4.3"
11
+ env:
12
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
+ with:
14
+ sizes: >
15
+ {
16
+ "0": "XS",
17
+ "20": "S",
18
+ "50": "M",
19
+ "250": "L",
20
+ "800": "XL"
21
+ }
0 commit comments