mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-26 00:46:08 +01:00
25 lines
669 B
YAML
25 lines
669 B
YAML
---
|
|
name: "Meta Labeler"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
labeler:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@021a2405c7f990db57f5eae5397423dcc554159c # renovate: tag=v1.7.0
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Labeler
|
|
uses: actions/labeler@5c7539237e04b714afd8ad9b4aed733815b9fab4 # renovate: tag=v4.0.2
|
|
with:
|
|
configuration-path: .github/labeler.yaml
|
|
repo-token: "${{ steps.generate-token.outputs.token }}"
|