mirror of
https://github.com/acid-info/vac.dev.git
synced 2025-02-23 09:08:15 +00:00
* ci: Add new issues to project board * chore: Add GH labels * chore: Sync labels * Update README Small change to trigger CI
18 lines
348 B
YAML
18 lines
348 B
YAML
name: Sync labels
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/labels.yml
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: micnncim/action-label-syncer@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
manifest: .github/labels.yml
|