Skip to content

Commit

Permalink
add pull request labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobEliasWagner committed Jan 17, 2024
1 parent 159dc9d commit 6900053
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Pull Request Labeling

on:
- pull_request

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

size-label:
runs-on: ubuntu-latest
steps:
- name: size-label
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
sizes: >
{
"0": "XS",
"50": "S",
"100": "M",
"250": "L",
"500": "Too Large"
}

0 comments on commit 6900053

Please sign in to comment.