Skip to content

Commit 2e58ef1

Browse files
committed
fix more typos
1 parent c094cc9 commit 2e58ef1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

stash/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
# Stash GitHub Action
1818

1919
`Stash` provides a solution for managing large build caches in your workflows, that doesn't require any secrets and can therefore be used in fork PRs.
20-
It's designed as an alternative to `actions/cache` which struggles with big build caches such as `.ccache` directories due to it's repository wide [size limit](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy) of 10GB and the fact that caches are [immutable](https://github.com/actions/toolkit/issues/505).
21-
With workflows running multiple configurations across PRs and merge commits this limit is quickly reached, leading to cache evicitions, causing CI times to increase.
20+
It's designed as an alternative to `actions/cache` which struggles with big build caches such as `.ccache` directories due to the repository wide [size limit](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy) of 10GB and the fact that caches are [immutable](https://github.com/actions/toolkit/issues/505).
21+
With workflows running multiple configurations across PRs and merge commits this limit is quickly reached, leading to cache evictions, causing CI times to increase.
2222

2323
This action is split into two distinct operations:
2424
- `infrastructure-actions/stash/restore` for fetching a previously stored stash
2525
- `infrastructure-actions/stash/save` for storing a new stash after a build has been completed.
2626

2727
## Features
2828

29-
- Each stash is uploaded as a workflow artifact, in contrasts to `actions/cache` there is no repository wide size limit for artifacts.
29+
- Each stash is uploaded as a workflow artifact. In contrasts to `actions/cache` there is no repository wide size limit for artifacts.
3030
- There is no cache eviction, stashes will expire after 5 days by default.
3131
- Artifact storage is free for public repositories and much cheaper than CI minutes (~ 1 Cent/1GB/day) for private repositories.
3232
- No secrets required, stash can be used in fork PRs.

stash/restore/get_stash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def ensure_env_var(var: str) -> str:
3737

3838

3939
def run_checked(args, **kwargs):
40-
"""Run command and caputre it's output and check that it exists succesfully."""
40+
"""Run command and capture it's output and check that it exits successfully."""
4141
result = subprocess.run(args, **kwargs, capture_output=True, check=True, text=True)
4242
return result
4343

0 commit comments

Comments
 (0)