Skip to content

Commit 344f1a2

Browse files
authored
chore: Added github action (#112)
* Updated .github/pull_request_template.md * Updated .github/workflows/pr_size.yml
1 parent eb41a9c commit 344f1a2

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/pull_request_template.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Pull Request Labeling
2+
3+
on: [pull_request]
4+
5+
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

Comments
 (0)