Skip to content

Commit

Permalink
chore: Added github action (#164)
Browse files Browse the repository at this point in the history
* Updated .github/pull_request_template.md

* Updated .github/workflows/pr_size.yml
  • Loading branch information
shubham-fyle authored Sep 23, 2024
1 parent 033e884 commit acafc19
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### Description
Please add PR description here, add screenshots if needed

## Clickup
Please add link here
21 changes: 21 additions & 0 deletions .github/workflows/pr_size.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Pull Request Labeling

on: [pull_request]

jobs:
size:
runs-on: ubuntu-latest
name: Label the PR size
steps:
- uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
sizes: >
{
"0": "XS",
"20": "S",
"50": "M",
"250": "L",
"800": "XL"
}

0 comments on commit acafc19

Please sign in to comment.