-
Notifications
You must be signed in to change notification settings - Fork 0
ci(labels): add label sync workflow + labels catalog #59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b96f26d
ci(labels): add label sync workflow and labels catalog (non-destructive)
flyingrobots 0229fdc
Merge remote-tracking branch 'origin/main' into ci/label-sync
flyingrobots be9e50c
ci(labels): quote label names containing colons to satisfy YAML parsi…
flyingrobots ae56988
diagrams: prewarm local mermaid-cli and use local mmdc to avoid inter…
flyingrobots 98be08f
diagrams: add retry path — on npx failure (e.g., exit 126) install lo…
flyingrobots 925e8d1
ci(labels): make colors unique — schemas -> 6e5494, privacy -> 6f42c1…
flyingrobots File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| - name: "type: bug" | ||
| color: d73a4a | ||
| description: Bug report | ||
| - name: "type: enhancement" | ||
| color: a2eeef | ||
| description: Feature or enhancement | ||
| - name: "type: docs" | ||
| color: 0075ca | ||
| description: Documentation changes | ||
| - name: "type: spec/design" | ||
| color: bfd4f2 | ||
| description: Specification or design discussion | ||
| - name: "type: tooling" | ||
| color: c2e0c6 | ||
| description: Tooling or developer experience | ||
| - name: "type: test" | ||
| color: e4e669 | ||
| description: Tests or fixtures | ||
| - name: "area: xtask" | ||
| color: 5319e7 | ||
| description: Rust xtask tooling | ||
| - name: "area: schemas" | ||
| color: 6e5494 | ||
| description: JSON Schemas and examples | ||
| - name: "area: diagrams" | ||
| color: 0e8a16 | ||
| description: Mermaid diagrams and tooling | ||
| - name: "area: ci" | ||
| color: fef2c0 | ||
| description: CI/CD workflows | ||
| - name: "area: build" | ||
| color: 1d76db | ||
| description: Build, Makefile, toolchain | ||
| - name: "area: determinism" | ||
| color: 0366d6 | ||
| description: Deterministic projections and encodings | ||
| - name: "area: privacy" | ||
| color: 6f42c1 | ||
| description: Privacy / ciphertext handling concerns | ||
| - name: "area: governance" | ||
| color: 0052cc | ||
| description: Governance model and docs | ||
| - name: "priority: p0" | ||
| color: b60205 | ||
| description: Critical priority | ||
| - name: "priority: p1" | ||
| color: d93f0b | ||
| description: High priority | ||
| - name: "priority: p2" | ||
| color: fbca04 | ||
| description: Normal priority | ||
| - name: "status: blocked" | ||
| color: 000000 | ||
| description: Blocked on dependency | ||
| - name: "needs: info" | ||
| color: cfd3d7 | ||
| description: Needs more information | ||
| - name: "needs: repro" | ||
| color: cfd3d7 | ||
| description: Needs minimal reproduction | ||
| - name: good first issue | ||
| color: 7057ff | ||
| description: Good for newcomers | ||
| - name: help wanted | ||
| color: 008672 | ||
| description: Help appreciated | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| name: Label Sync | ||
|
|
||
| on: | ||
| push: | ||
| paths: | ||
| - .github/labels.yml | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| issues: write | ||
|
|
||
| jobs: | ||
| sync: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Sync labels from .github/labels.yml | ||
| uses: crazy-max/ghaction-github-labeler@v5 | ||
| with: | ||
| yaml_file: .github/labels.yml | ||
| skip_delete: true |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.