Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/sync-github-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Synchronize Github labels

on:
label:
types: [created, deleted, edited]

jobs:
sync-github-labels:
runs-on: ubuntu-latest
strategy:
matrix:
repo: [mmtk-openjdk, mmtk-jikesrvm, mmtk-v8, mmtk-ruby, mmtk-julia]
steps:
- name: Sync to ${{ matrix.repo }}
run: |
gh label clone mmtk/mmtk-core --repo ${{ matrix.repo }}
env:
GITHUB_TOKEN: ${{ secrets.CI_ACCESS_TOKEN }}