mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* chore: labeler.yml * chore(workflows): labeler * chore(workflows): label syncer * chore: labels.yml * chore(labeler): add benchmarks * chore(labels): add packages:bun * chore(labeler): add packages:bun * chore(labels): add question * chore(labels): add esm<>cjs * chore(labels): add chore label
25 lines
446 B
YAML
25 lines
446 B
YAML
name: Label Sync
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/labels.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
label-sync:
|
|
name: Label sync
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Sync labels
|
|
uses: crazy-max/ghaction-github-labeler@v4
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|