mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-26 08:54:49 +01:00
| datasource | package | from | to | | ----------- | ----------------------- | ------ | ------ | | github-tags | tibdex/github-app-token | v1.8.0 | v1.8.2 |
33 lines
919 B
YAML
33 lines
919 B
YAML
---
|
|
name: "Meta Sync labels"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: ["main"]
|
|
paths: [".github/labels.yaml"]
|
|
|
|
jobs:
|
|
labels:
|
|
name: Sync Labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@0d49dd721133f900ebd5e0dff2810704e8defbc6 # v1.8.2
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
|
|
- name: Sync Labels
|
|
uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # renovate: tag=v2.3.2
|
|
with:
|
|
config-file: .github/labels.yaml
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
delete-other-labels: true
|