mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-25 16:44:39 +01:00
| datasource | package | from | to | | ----------- | ----------------------- | ------ | ------ | | github-tags | tibdex/github-app-token | v2.0.0 | v2.1.0 |
26 lines
662 B
YAML
26 lines
662 B
YAML
---
|
|
name: "Meta Labeler"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
labeler:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Labeler
|
|
uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
|
|
with:
|
|
configuration-path: .github/labeler.yaml
|
|
repo-token: "${{ steps.generate-token.outputs.token }}"
|