1
0
Fork 0
mirror of synced 2024-09-17 17:57:47 +12:00
budibase/.github/workflows/pr-labeler.yml

39 lines
970 B
YAML
Raw Normal View History

2024-06-04 22:58:43 +12:00
name: PR labeler
2024-06-05 00:19:54 +12:00
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
2024-06-04 22:58:43 +12:00
on:
pull_request:
types: [opened, synchronize]
jobs:
size-labeler:
runs-on: ubuntu-latest
steps:
- uses: codelytv/pr-size-labeler@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_max_size: "10"
s_max_size: "100"
m_max_size: "500"
l_max_size: "1000"
fail_if_xl: "false"
files_to_ignore: "yarn.lock"
2024-06-04 23:03:30 +12:00
team-labeler:
runs-on: ubuntu-latest
2024-06-05 00:22:30 +12:00
if: ${{ github.event.action == 'opened' }}
2024-06-04 23:03:30 +12:00
steps:
- uses: rodrigoarias/auto-label-per-user@v1.0.0
with:
git-token: ${{ secrets.GITHUB_TOKEN }}
user-team-map: |
{
2024-06-05 00:16:29 +12:00
"adrinr": "firestorm",
"samwho": "firestorm",
2024-06-07 18:34:33 +12:00
"PClmnt": "firestorm",
2024-06-04 23:03:30 +12:00
"mike12345567": "firestorm"
}