1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 19:55:48 +00:00
Slimefun4/.github/workflows/pulls.yml

18 lines
367 B
YAML
Raw Normal View History

2019-12-09 09:30:21 +00:00
name: PR Categorization
2019-12-08 18:51:51 +00:00
on:
pull_request:
types: [opened, reopened]
jobs:
assign_labels:
runs-on: ubuntu-latest
name: Categorize Pull Requests
2019-12-08 18:54:07 +00:00
steps:
- name: Branch Categorization
2019-12-09 09:30:21 +00:00
uses: TheBusyBiscuit/branch-cat@v1.0.6
2019-12-08 18:54:07 +00:00
with:
2019-12-08 19:58:43 +00:00
rules: '{ "fix\/.+" : "Bug Fix" }'
2019-12-08 19:11:13 +00:00
env:
2019-12-08 19:51:10 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}