Skip to content

Commit

Permalink
Merge branch 'main' into eddsa
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdaybird authored Dec 26, 2024
2 parents e6a7c2e + 4c18b09 commit dcde077
Show file tree
Hide file tree
Showing 24 changed files with 321 additions and 149 deletions.
4 changes: 4 additions & 0 deletions .codespell-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ronkathon
crate
nd
te
75 changes: 75 additions & 0 deletions .github/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
- name: "bug 🐛"
color: "d73a4a"
description: "Something isn't working"

- name: "documentation 📜"
color: "0075ca"
description: "Improvements or additions to documentation"

- name: "feature ✨"
color: "a2eeef"
description: "New feature or request"

- name: "performance ⚡"
color: "fbca04"
description: "Benchmarks or performance improvements"

- name: "question ❓"
color: "5319e7"
description: "Further information is requested"

- name: "structure 🧱"
color: "0052cc"
description: "Structure refactors or changes"

- name: "test ✏️"
color: "0e8a16"
description: "Testing improvements"

- name: "priority-high 🔥"
color: "b60205"
description: "High priority tasks"

- name: "priority-medium ⚡"
color: "fbca04"
description: "Medium priority tasks"

- name: "priority-low 🌱"
color: "0e8a16"
description: "Low priority tasks"

- name: "good first issue 👋"
color: "7057ff"
description: "Good for newcomers"

- name: "help wanted 🆘"
color: "008672"
description: "Extra attention is needed"

- name: "tech debt 🏗️"
color: "ff7619"
description: "Technical debt and cleanup tasks"

- name: "ci/cd 🔄"
color: "44cc11"
description: "Changes to CI/CD pipeline"

- name: "dependencies 📦"
color: "cb7eed"
description: "Dependency updates and maintenance"

- name: "discussion 💭"
color: "5319e7"
description: "Needs discussion or decisions"

- name: "bounty 🏴‍☠️"
color: "fef2c0"
description: "Closing this rewards a bounty!"

- name: "attack 🤺"
color: "ff2c2c"
description: "An attack on a given implementation"

- name: "needs more information 🙋"
color: "ccff00"
description: "More needed to clarify the issue"
File renamed without changes.
22 changes: 22 additions & 0 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync Labels

on:
push:
branches:
- main
paths:
- '.github/labels.yaml'
workflow_dispatch:

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yaml
prune: true
24 changes: 24 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Spell Check

on:
push:
branches:
- main
pull_request:

jobs:
spellcheck:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Codespell
run: pip install codespell

- name: Run Codespell
run: |
codespell \
--ignore-words=.codespell-ignore \
--skip="*.min.js,*.json,*.lock,*.bin,*.svg"
Loading

0 comments on commit dcde077

Please sign in to comment.