From 92339d23a8b6ce3ec5d44d3897d47a402c299742 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Fri, 1 May 2020 22:32:48 +0300 Subject: [PATCH] Update readme --- README.md | 10 +++++----- action.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0d8e2e6..0e814af 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ This action is intended to configure Pagefile size and location for Windows images in GitHub Actions. # Available parameters -| Argument | Description | Default value | -|-------------------------|--------------------------|--------------------| -| `minimum-size` | Set minimum size of Pagefile (GB) | `8` | -| `maximum-size` | Set maximum size of Pagefile (GB) | `minimum-size` | -| `disk-root` | Set disk root where Pagefile will be located | `C:`, `D:` | +| Argument | Description | Format | Default value | +|----------|-------------|--------|---------------| +| `minimum-size` | Set minimum size of Pagefile | `2048MB`, `4GB`, `8GB` and etc | `8GB` | +| `maximum-size` | Set maximum size of Pagefile | The same like `minimum-size` | `minimum-size` | +| `disk-root` | Set disk root where Pagefile will be located | `C:` or `D:` | `D:` | # Usage ``` diff --git a/action.yml b/action.yml index 417207d..538d7b8 100644 --- a/action.yml +++ b/action.yml @@ -3,11 +3,11 @@ author: 'Aleksandr Chebotov & Maxim Lobanov' description: 'Configure Pagefile on Windows agents in GitHub Actions' inputs: minimum-size: - description: 'Set minimum size of Pagefile (GB)' + description: 'Set minimum size of Pagefile' required: false default: 8GB maximum-size: - description: 'Set maximum size of Pagefile (GB)' + description: 'Set maximum size of Pagefile' required: false disk-root: description: 'Set disk root where pagefile.sys will be located'