Skip to content

Remove empty space when resize datagrid table in Discover and Allow saving column width in both Discover and Dashboards Embeddable #3666

Remove empty space when resize datagrid table in Discover and Allow saving column width in both Discover and Dashboards Embeddable

Remove empty space when resize datagrid table in Discover and Allow saving column width in both Discover and Dashboards Embeddable #3666

name: Create Documentation Issue
on:
pull_request_target:
types:
- labeled
env:
PR_NUMBER: ${{ github.event.number }}
jobs:
create-issue:
if: ${{ github.event.label.name == 'needs-documentation' }}
runs-on: ubuntu-latest
name: Create Documentation Issue
steps:
- name: GitHub App token
id: github_app_token
uses: tibdex/github-app-token@v1.5.0
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
# opensearch-trigger-bot installation ID
installation_id: 22958780
- name: Checkout code
uses: actions/checkout@v2
- name: Edit the issue template
run: |
echo "https://github.com/opensearch-project/OpenSearch-Dashboards/pull/${{ env.PR_NUMBER }}." >> ./.github/doc_issue_template.md
- name: Create Issue From File
id: create-issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Add documentation related to new feature
content-filepath: ./.github/doc_issue_template.md
labels: dashboards
repository: opensearch-project/documentation-website
token: ${{ steps.github_app_token.outputs.token }}
- name: Print Issue
run: echo "Created related documentation issue ${{ steps.create-issue.outputs.issue-number }}"