From 8c4c9d455f8f7199b98eef36e7df5484686de829 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Fri, 27 Jan 2023 00:50:58 +0000 Subject: [PATCH 1/3] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..d962ce98 --- /dev/null +++ b/.github/workflows/main.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 1f993470065d9d8f7082ce24b6a5c093d6f1aca2 Mon Sep 17 00:00:00 2001 From: stavares843 Date: Fri, 27 Jan 2023 00:51:24 +0000 Subject: [PATCH 2/3] [create-pull-request] automated change --- Source/Siesta/Resource/Resource.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Siesta/Resource/Resource.swift b/Source/Siesta/Resource/Resource.swift index 94e94b02..34f1beae 100644 --- a/Source/Siesta/Resource/Resource.swift +++ b/Source/Siesta/Resource/Resource.swift @@ -88,7 +88,7 @@ public final class Resource: NSObject Note that this property represents the __full state__ of the resource. It therefore only holds entities fetched with `load()` and `loadIfNeeded()`, not any of the various flavors of `request(...)`. - Note that `latestData` will be present as long as there has _ever_ been a succesful request since the resource + Note that `latestData` will be present as long as there has _ever_ been a successful request since the resource was created or wiped. If an error occurs, `latestData` will still hold the latest (now stale) valid data. - SeeAlso: `TypedContentAccessors` From 286b6fdb6ae621ec39c64ec7fbc9531328211d78 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Fri, 27 Jan 2023 00:52:06 +0000 Subject: [PATCH 3/3] Delete main.yml --- .github/workflows/main.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index d962ce98..00000000 --- a/.github/workflows/main.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 }}