You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2021/01/13 06:12:44 UTC

[superset] branch master updated (e9d66e9 -> 5fe4173)

This is an automated email from the ASF dual-hosted git repository.

yjc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from e9d66e9  fix: do not show vertical scrollbar for charts in dashboard (#12478)
     add 5fe4173  build: add cancel-workflow-runs action locally (#12394)

No new revisions were added by this update.

Summary of changes:
 .../.eslintignore                                  |    0
 .../actions/cancel-workflow-runs/.eslintrc.json    |   58 +
 .../.github/workflows/test.yml                     |   36 +
 .../.gitignore                                     |    9 +-
 .../cancel-workflow-runs/.pre-commit-config.yaml   |   47 +
 .../.prettierignore                                |    0
 .../actions/cancel-workflow-runs/.prettierrc.json  |   11 +
 .../LICENSE                                        |    0
 .github/actions/cancel-workflow-runs/README.md     |  731 +++
 .../cancel-workflow-runs/__tests__/main.test.ts    |    5 +
 .github/actions/cancel-workflow-runs/action.yml    |   74 +
 .../actions/cancel-workflow-runs/jest.config.js    |   11 +
 .../package-lock.json                              | 5948 ++++++++++++++------
 .github/actions/cancel-workflow-runs/package.json  |   48 +
 .github/actions/cancel-workflow-runs/src/main.ts   | 1519 +++++
 .github/actions/cancel-workflow-runs/tsconfig.json |   12 +
 .../cancel-workflow-runs/yamllint-config.yml       |    8 +-
 .github/workflows/cancel_duplicates.yml            |    2 +-
 18 files changed, 6899 insertions(+), 1620 deletions(-)
 copy .github/actions/{cached-dependencies => cancel-workflow-runs}/.eslintignore (100%)
 create mode 100644 .github/actions/cancel-workflow-runs/.eslintrc.json
 create mode 100644 .github/actions/cancel-workflow-runs/.github/workflows/test.yml
 copy .github/actions/{file-changes-action => cancel-workflow-runs}/.gitignore (95%)
 create mode 100644 .github/actions/cancel-workflow-runs/.pre-commit-config.yaml
 copy .github/actions/{cached-dependencies => cancel-workflow-runs}/.prettierignore (100%)
 create mode 100644 .github/actions/cancel-workflow-runs/.prettierrc.json
 copy .github/actions/{pr-lint-action => cancel-workflow-runs}/LICENSE (100%)
 create mode 100644 .github/actions/cancel-workflow-runs/README.md
 create mode 100644 .github/actions/cancel-workflow-runs/__tests__/main.test.ts
 create mode 100644 .github/actions/cancel-workflow-runs/action.yml
 create mode 100644 .github/actions/cancel-workflow-runs/jest.config.js
 copy .github/actions/{cached-dependencies => cancel-workflow-runs}/package-lock.json (60%)
 create mode 100644 .github/actions/cancel-workflow-runs/package.json
 create mode 100644 .github/actions/cancel-workflow-runs/src/main.ts
 create mode 100644 .github/actions/cancel-workflow-runs/tsconfig.json
 copy superset/reports/notifications/exceptions.py => .github/actions/cancel-workflow-runs/yamllint-config.yml (93%)