mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-26 08:54:49 +01:00
26 lines
588 B
YAML
26 lines
588 B
YAML
---
|
|
name: "Meta: Labeler"
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
labeler:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@v1
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Labeler
|
|
uses: actions/labeler@v4
|
|
with:
|
|
configuration-path: .github/labeler.yaml
|
|
repo-token: "${{ steps.generate-token.outputs.token }}"
|