-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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 vis_editors_gauge-custom_color
# Conflicts: # src/plugins/chart_expressions/expression_gauge/common/types/expression_renderers.ts # src/plugins/chart_expressions/expression_gauge/public/components/gauge_component.test.tsx # src/plugins/chart_expressions/expression_gauge/public/components/gauge_component.tsx # src/plugins/chart_expressions/expression_gauge/public/expression_renderers/gauge_renderer.tsx
- Loading branch information
Showing
702 changed files
with
20,781 additions
and
8,173 deletions.
There are no files selected for viewing
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
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
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,4 +1,5 @@ | ||
**/*.js.snap | ||
__tmp__ | ||
/.es | ||
/.chromium | ||
/build | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Add to Infra Monitoring UI project | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
jobs: | ||
add_to_project: | ||
runs-on: ubuntu-latest | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'Team:Infra Monitoring UI') || | ||
contains(github.event.issue.labels.*.name, 'Feature:Stack Monitoring') || | ||
contains(github.event.issue.labels.*.name, 'Feature:Logs UI') || | ||
contains(github.event.issue.labels.*.name, 'Feature:Metrics UI') | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAGc3Zs1EEA" | ||
GITHUB_TOKEN: ${{ secrets.PROJECT_ASSIGNER_TOKEN }} |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
github.event.pull_request.merged_at && | ||
contains(github.event.pull_request.labels.*.name, 'Team:Fleet') | ||
outputs: | ||
matrix: ${{ steps.issues_to_label.outputs.value }} | ||
issue_ids: ${{ steps.issues_to_label.outputs.value }} | ||
label_ids: ${{ steps.label_ids.outputs.value }} | ||
steps: | ||
- uses: octokit/[email protected] | ||
|
@@ -66,22 +66,28 @@ jobs: | |
label_issues: | ||
needs: fetch_issues_to_label | ||
runs-on: ubuntu-latest | ||
# For each issue closed by the PR run this job | ||
|
||
# For each issue closed by the PR x each label to apply, run this job | ||
if: | | ||
fromJSON(needs.fetch_issues_to_label.outputs.issue_ids).length > 0 && | ||
fromJSON(needs.fetch_issues_to_label.outputs.label_ids).length > 0 | ||
strategy: | ||
matrix: | ||
issueNodeId: ${{ fromJSON(needs.fetch_issues_to_label.outputs.matrix) }} | ||
name: Label issue ${{ matrix.issueNodeId }} | ||
issueId: ${{ fromJSON(needs.fetch_issues_to_label.outputs.issue_ids) }} | ||
labelId: ${{ fromJSON(needs.fetch_issues_to_label.outputs.label_ids) }} | ||
|
||
name: Label issue ${{ matrix.issueId }} with ${{ matrix.labelId }} | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: add_labels_to_closed_issue | ||
with: | ||
query: | | ||
mutation add_label($issueid: ID!, $labelids:[ID!]!) { | ||
addLabelsToLabelable(input: {labelableId: $issueid, labelIds: $labelids}) { | ||
mutation add_label($issueid: ID!, $labelid:ID!) { | ||
addLabelsToLabelable(input: {labelableId: $issueid, labelIds: [$labelid]}) { | ||
clientMutationId | ||
} | ||
} | ||
issueid: ${{ matrix.issueNodeId }} | ||
labelids: ${{ fromJSON(needs.fetch_issues_to_label.outputs.label_ids) }} | ||
issueid: ${{ matrix.issueId }} | ||
labelid: ${{ matrix.labelId }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ target | |
*.iml | ||
*.log | ||
types.eslint.config.js | ||
__tmp__ | ||
|
||
# Ignore example plugin builds | ||
/examples/*/build | ||
|
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
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
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
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
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
Oops, something went wrong.