-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 3-add-ruff-linter
- Loading branch information
Showing
7 changed files
with
24 additions
and
112 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @reece | ||
* @biocommons/maintainers |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,3 @@ | ||
- name: "bug" | ||
color: "d73a4a" | ||
description: "Something isn't working" | ||
# file must contain an array, which may be empty | ||
|
||
- name: "documentation" | ||
color: "0075ca" | ||
description: "Improvements or additions to documentation" | ||
|
||
- name: "duplicate" | ||
color: "cfd3d7" | ||
description: "This issue or pull request already exists" | ||
|
||
- name: "enhancement" | ||
color: "a2eeef" | ||
description: "New feature or request" | ||
|
||
- name: "good first issue" | ||
color: "7057ff" | ||
description: "Good for newcomers" | ||
|
||
- name: "help wanted" | ||
color: "008672" | ||
description: "Extra attention is needed" | ||
|
||
- name: "invalid" | ||
color: "e4e669" | ||
description: "This doesn't seem right" | ||
|
||
- name: "question" | ||
color: "d876e3" | ||
description: "Further information is requested" | ||
|
||
- name: "rfc" | ||
color: "d876e3" | ||
description: "Request for comments" | ||
|
||
- name: "wontfix" | ||
color: "ffffff" | ||
description: "This will not be worked on" | ||
[] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
name: github | ||
|
||
name: Sync labels | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- '.github/labels.yml' | ||
- '.github/workflows/labels.yml' | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
labeler: | ||
labels: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
yaml-file: .github/labels.yml | ||
exclude: | | ||
help* | ||
*issue | ||
sparse-checkout: .github/labels.yml | ||
|
||
- uses: EndBug/label-sync@v2 | ||
with: | ||
config-file: | | ||
https://raw.githubusercontent.com/biocommons/.github/main/etc/labels.yml | ||
.github/labels.yml | ||
delete-other-labels: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ name: Python package | |
|
||
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
pull_request: | ||
|
||
jobs: | ||
|
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