Skip to content

Commit

Permalink
Merge pull request #534 from AutoResearch/ci/standardize-repository-i…
Browse files Browse the repository at this point in the history
…ssue-labels-with-label-syncer

ci: standardize repository issue labels with label syncer
  • Loading branch information
benwandrew authored Jul 28, 2023
2 parents a9916f5 + 652d3d8 commit 8091f10
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Labels for AutoResearch repos
- name: bug
description: Something isn't working.
color: d73a4a
- name: documentation
description: Improvements or additions to documentation.
color: 0075ca
- name: duplicate
description: This issue or pull request already exists.
color: cfd3d7
- name: enhancement
description: New feature or request.
color: a2eeef
- name: good first issue
description: Good for newcomers.
color: 7057ff
- name: invalid
description: This doesn't seem right.
color: e4e669
- name: priority 0 - emergency
description: These can be blockers, or security issues, and should be resolved immediately.
color: f01b0c
- name: priority 1 - needed
description: These are highly desirable to be fixed, ideally within 2 weeks.
color: f0580c
- name: priority 2 - wanted
description: These should be addressed within 2 months.
color: f0910c
- name: priority 3 - optional
description: Not time sensitive.
color: f0dd0c
- name: wontfix
description: This will not be worked on.
color: ffffff
31 changes: 31 additions & 0 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Sync labels
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: micnncim/action-label-syncer@v1
with:
manifest: .github/labels.yml
repository: |
AutoResearch/autora
AutoResearch/autora-core
AutoResearch/autora-experimentalist-falsification
AutoResearch/autora-experimentalist-sampler-assumption
AutoResearch/autora-experimentalist-sampler-inequality
AutoResearch/autora-experimentalist-sampler-leverage
AutoResearch/autora-experimentalist-sampler-model-disagreement
AutoResearch/autora-experimentalist-sampler-nearest-value
AutoResearch/autora-experimentalist-sampler-novelty
AutoResearch/autora-experimentalist-sampler-uncertainty
AutoResearch/autora-experiment-runner-experimentation-manager-firebase
AutoResearch/autora-experiment-runner-firebase-prolific
AutoResearch/autora-experiment-runner-recruitment-manager-prolific
AutoResearch/autora-synthetic
AutoResearch/autora-theorist-bms
AutoResearch/autora-theorist-bsr
AutoResearch/autora-theorist-darts
AutoResearch/autora-workflow
token: ${{ secrets.LABEL_SYNCER }}

0 comments on commit 8091f10

Please sign in to comment.