Copy GitHub Labels #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Copy GitHub Labels | |
on: | |
workflow_dispatch: | |
jobs: | |
copy-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Copy labels from another repository | |
uses: actions/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const sourceRepo = 'StephanAkkerman/fintwit-bot'; | |
const targetOwner = context.repo.owner; | |
const targetRepo = context.repo.repo; | |
// Fetch labels from the source repository | |
const response = await github.rest.issues.listLabelsForRepo({ | |
owner: sourceRepo.split('/')[0], | |
repo: sourceRepo.split('/')[1], | |
}); | |
const labels = response.data; | |
// Create or update labels in the target repository | |
for (const label of labels) { | |
await github.rest.issues.createLabel({ | |
owner: targetOwner, | |
repo: targetRepo, | |
name: label.name, | |
color: label.color, | |
description: label.description || '', | |
}).catch(error => { | |
// If label exists, update it | |
if (error.status === 422) { | |
github.rest.issues.updateLabel({ | |
owner: targetOwner, | |
repo: targetRepo, | |
name: label.name, | |
color: label.color, | |
description: label.description || '', | |
}); | |
} | |
}); | |
} |