mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
25e2c34582
Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
70 lines
1.7 KiB
YAML
70 lines
1.7 KiB
YAML
---
|
|
name: "Metadata: Label issues and pull requests"
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
- ready_for_review
|
|
- synchronize
|
|
|
|
jobs:
|
|
label:
|
|
name: Label issues and pull requests
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: getsentry/action-github-app-token@v1
|
|
id: get-app-token
|
|
with:
|
|
app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
|
|
private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
|
|
|
|
- uses: Videndum/label-mastermind@2.1.1
|
|
with:
|
|
GITHUB_TOKEN: ${{ steps.get-app-token.outputs.token }}
|
|
configJSON: |
|
|
{
|
|
"labels": {
|
|
"kind:incorrect-title": {
|
|
"name": "kind:incorrect-title",
|
|
"colour": "#ffb700",
|
|
"description": "Incorrect title"
|
|
}
|
|
},
|
|
"runners": [
|
|
{
|
|
"root": ".",
|
|
"versioning": {
|
|
"source": "milestones",
|
|
"type": "other"
|
|
},
|
|
"pr": {
|
|
"labels": {
|
|
"kind:incorrect-title": {
|
|
"requires": 2,
|
|
"conditions": [
|
|
{
|
|
"type": "creatorMatches",
|
|
"pattern": "^(?!renovate).+"
|
|
},
|
|
{
|
|
"type": "titleMatches",
|
|
"pattern": "^(?!\[[a-z0-9]+\]\s[A-Z0-9].+).+"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|