Skip to content

Commit

Permalink
Merge branch 'master' into fix/text-box-not-resizing
Browse files Browse the repository at this point in the history
* master: (109 commits)
  Inline text formatting (#1323)
  Bump terser-webpack-plugin from 2.3.6 to 3.0.1 (#1597)
  Allow disabling warning on exit in development (#1176)
  fixing indent that was missed by automation
  Deploy plugin bundle to wiki repo for easier QA (#1590)
  Fix initial height of preset panel (#1591)
  Fixes editor resizing after fullbleed (#1553)
  More error handling
  Fix file drag & drop crash for unsupported media types (#1431)
  Improve test
  Bump polished from 3.6.1 to 3.6.2 (#1577)
  Bump react-transition-group from 4.3.0 to 4.4.0 (#1565)
  Remove Delete Page shortcut tooltip (#1574)
  renaming filteredStories to just stories. they are not filtered.
  updating typeahead input and options for new designs. New colors, tighter space, different expanded view. Removing option to filter internally through typeahead since we do all of that outside of the component. some styled component cleanup
  Remove wp element.
  Bump @testing-library/dom from 7.2.2 to 7.3.0 (#1563)
  Remove wp element
  Lints in tests
  Add more tests
  ...
  • Loading branch information
obetomuniz committed May 6, 2020
2 parents b65c513 + dd191a4 commit 94fec7d
Show file tree
Hide file tree
Showing 278 changed files with 27,924 additions and 2,046 deletions.
1 change: 0 additions & 1 deletion .distignore
Expand Up @@ -3,7 +3,6 @@
.idea
.storybook
__mocks__
assets/images/templates
assets/src
bin
build
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/cleanup-pr-assets.yml
@@ -0,0 +1,34 @@
# This workflow removes any assets created for manual QA testing
# from the GitHub Wiki repository once a pull request is closed.
#
# See https://github.com/google/web-stories-wp/issues/1398

name: Clean up PR assets for closed PRs

on:
pull_request:
types: [closed]

jobs:
remove-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
repository: ${{ github.repository }}.wiki
token: ${{ secrets.GITHUB_TOKEN }}

- name: Prune PR files
run: |
rm -rf "refs/pull/${{ github.event.pull_request.number }}"
git add .
git status
git diff --staged --quiet && echo 'No changes to commit; exiting!' && exit 0
git commit -m "Prune refs/pull/${{ github.event.pull_request.number }}"
git push origin master
env:
GIT_AUTHOR_EMAIL: ${{ github.actor }}@users.noreply.github.com
GIT_AUTHOR_NAME: ${{ github.actor }}
GIT_COMMITTER_EMAIL: ${{ github.actor }}@users.noreply.github.com
GIT_COMMITTER_NAME: ${{ github.actor }}

0 comments on commit 94fec7d

Please sign in to comment.