Skip to content

Commit

Permalink
[tools] Add Toolpad coverage for issues missing labels
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 8, 2024
1 parent 1e3c890 commit 9f66fd3
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion tools-public/toolpad/pages/issueWithoutProductScope/page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ spec:
return materialUI.rows
.concat(muix.rows)
.concat(muiDesignKits.rows)
//.concat(pigmentCSS.rows)
// .concat(pigmentCSS.rows) There is only one product scope today with Pigment CSS
.concat(toolpad.rows)
.concat(baseUI.rows)
.filter((issue) => {
const withoutNonProductScopeLabels = issue.labels.filter(
Expand Down Expand Up @@ -182,6 +183,27 @@ spec:
- name: GITHUB_TOKEN
value:
$$env: GITHUB_TOKEN
- name: toolpad
query:
kind: rest
url: https://api.github.com/repos/mui/toolpad/issues
searchParams:
- name: labels
value: 'status: waiting for maintainer'
- name: per_page
value: '100'
- name: state
value: all
headers:
- name: Authorization
value:
$$jsExpression: |
`Bearer ${parameters.GITHUB_TOKEN}`
method: GET
parameters:
- name: GITHUB_TOKEN
value:
$$env: GITHUB_TOKEN
alias:
- y923hoo
displayName: Issue without product scope

0 comments on commit 9f66fd3

Please sign in to comment.