2023-05-13 12:16:15 -04:00
|
|
|
name: Import open source standard labels
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-05-13 12:36:11 -04:00
|
|
|
branches:
|
2023-05-13 12:45:59 -04:00
|
|
|
- master
|
2023-05-13 12:16:15 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
labels:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
- uses: EddieHubCommunity/gh-action-open-source-labels@main
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
owner-name: ${{ github.repository_owner }}
|
|
|
|
repository-name: ${{ github.event.repository.name }}
|
2023-05-14 06:32:41 -04:00
|
|
|
force: true # optional to clear existing labels, default to true
|