Skip to content

Commit

Permalink
Merge branch 'master' into samz/adr-ui-design
Browse files Browse the repository at this point in the history
  • Loading branch information
Amzani authored Jul 17, 2023
2 parents f297487 + 6cf27c8 commit 9b35a5b
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .changeset/perfect-sloths-repeat.md

This file was deleted.

55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/pitch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Pitch
description: 'Do you have an idea and a product enhancement? Time to pitch!'
title: '[PITCH]:'
labels: ['Pitch']
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this pitch! If you need some inspiration, you can check out these pitch examples: [Example 1](https://github.com/asyncapi/studio/issues/636) and [Example 2](https://github.com/asyncapi/studio/issues/703).
- type: textarea
id: problem
attributes:
label: Problem
description: "Please provide a detailed description of the problem that users are facing. Share the story or context that exposes the problem."
validations:
required: true
- type: textarea
id: solution
attributes:
label: Solution
description: "Describe your proposed solution to address the problem. You can include examples, mockups, or views to illustrate your solution."
validations:
required: true
- type: textarea
id: rabbit_holes
attributes:
label: Rabbit holes
description: "Identify potential technical, design, or other challenges that might arise during the implementation of the solution. Discuss any anticipated obstacles or complexities."
validations:
required: true
- type: textarea
id: scope
attributes:
label: Scope
description: "Outline a list of tasks or issues that need to be completed to bring the proposed solution to life. You don't need to provide an exhaustive list upfront."
placeholder: |
- [ ] Task 1
- [ ] Task 2
- [ ] Task 3
validations:
required: true
- type: textarea
id: out-of-bounds
attributes:
label: Out of bounds
description: "Specify any elements or features that explicitly fall outside the scope of this pitch. Clarify what won't be included in the solution."
validations:
required: false
- type: textarea
id: success
attributes:
label: Success criteria
description: "Define the criteria that will determine the success of the proposed solution. Specify the specific outcomes or metrics that will indicate the effectiveness of the solution."
validations:
required: false
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-adr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
const title = context.payload.pull_request.title;
const labels = context.payload.pull_request.labels;
const hasAdrLabel = labels.some(label => label.name === 'kind/adr');
const re = /^(chore:\s*)?\[ADR-(\d{4})\]/;
const re = /^(?:chore:\s*)?\[ADR-(\d{4})\]/;
const match = title.match(re)
const startsWithAdr = (match !== null);
if (hasAdrLabel && !startsWithAdr) {
Expand Down
7 changes: 7 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @asyncapi/studio-ui

## 0.2.0

### Minor Changes

- 90435db: Add EditorSwitch component.
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/studio-ui",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"types": "./components/index.tsx",
"sideEffects": [
Expand Down

0 comments on commit 9b35a5b

Please sign in to comment.