From 6a9cede5c4bc406713d7f158543a6baea297d221 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Tue, 20 Dec 2022 19:29:47 +0000 Subject: [PATCH 1/3] Create fix-typos.yml --- .github/workflows/fix-typos.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/fix-typos.yml diff --git a/.github/workflows/fix-typos.yml b/.github/workflows/fix-typos.yml new file mode 100644 index 00000000000000..d962ce98f94759 --- /dev/null +++ b/.github/workflows/fix-typos.yml @@ -0,0 +1,19 @@ +name: Automatically fix typos +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: main + - uses: sobolevn/misspell-fixer-action@master + - uses: peter-evans/create-pull-request@v4.2.0 + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' + with: + token: ${{ secrets.GITHUB_TOKEN }} From b91a0102f66c5a205c0e7d965cea16b290495d55 Mon Sep 17 00:00:00 2001 From: stavares843 Date: Tue, 20 Dec 2022 19:30:19 +0000 Subject: [PATCH 2/3] [create-pull-request] automated change --- packages/vite/src/types/chokidar.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vite/src/types/chokidar.d.ts b/packages/vite/src/types/chokidar.d.ts index 83f96ed952024f..36ae23279c7349 100644 --- a/packages/vite/src/types/chokidar.d.ts +++ b/packages/vite/src/types/chokidar.d.ts @@ -158,7 +158,7 @@ export interface WatchOptions { /** * Whether to use the `fsevents` watching interface if available. When set to `true` explicitly - * and `fsevents` is available this supercedes the `usePolling` setting. When set to `false` on + * and `fsevents` is available this supersedes the `usePolling` setting. When set to `false` on * OS X, `usePolling: true` becomes the default. */ useFsEvents?: boolean From 9fe0ca8d2970c9479acad5b5956afa96206a3820 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Tue, 20 Dec 2022 19:31:19 +0000 Subject: [PATCH 3/3] Delete fix-typos.yml --- .github/workflows/fix-typos.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/fix-typos.yml diff --git a/.github/workflows/fix-typos.yml b/.github/workflows/fix-typos.yml deleted file mode 100644 index d962ce98f94759..00000000000000 --- a/.github/workflows/fix-typos.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Automatically fix typos -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - ref: main - - uses: sobolevn/misspell-fixer-action@master - - uses: peter-evans/create-pull-request@v4.2.0 - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - with: - token: ${{ secrets.GITHUB_TOKEN }}