diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 0000000..a4ce362 --- /dev/null +++ b/.github/labels.yml @@ -0,0 +1,42 @@ +- color: 0075ca + description: "Improvements or additions to documentation" + name: "documentation" +- color: b23128 + description: "Highest rated bug or issue, affects all" + name: "bug-P1" +- color: de3d32 + description: "Medium rated bug, affects a few" + name: "bug-P2" +- color: f44336 + description: "Lowest rated bug, affects nearly none or low-impact" + name: "bug-P3" +- color: 0e8a16 + description: "Any new significant addition" + name: "feature" +- color: b60205 + description: "Urgent or important fix/patch" + name: "hot-fix" +- color: cccccc + description: "Any idea, suggestion" + name: "idea" +- color: d4c5f9 + description: "Experimental - can break!" + name: "prototype" +- color: cc317c + description: "Any question or concern" + name: "question" +- color: c2e0c6 + description: "Unit tests, mocking, integration testing" + name: "test" +- color: fbca04 + description: "Anything GUI related" + name: "ui-ux" +- color: 006b75 + description: "Simple dependency updates or version bumps" + name: "chore" +- color: 006b75 + description: "General updates" + name: "update" +- color: FFA500 + description: "Any significant refactoring" + name: "refactor" \ No newline at end of file diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml new file mode 100644 index 0000000..ddcc195 --- /dev/null +++ b/.github/workflows/sync-labels.yml @@ -0,0 +1,19 @@ +# Workflow: https://github.com/micnncim/action-label-syncer +# Export your labels: https://github.com/micnncim/label-exporter +name: Sync labels +on: + push: + branches: + - master + paths: + - .github/labels.yml +jobs: + sync-labels: + 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 \ No newline at end of file