Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 612 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 612 Bytes

Runner Post Cleanup

A Github Action to clean the runner workspace - mostly copied from https://github.com/colpal/actions-clean.

This action will delete all files in the runners working directory at the end of the job. This is especially useful for self-hosted runners, where workspace files don't get deleted at the end of workflows.

Example

alt text

Usage

Add a step for the action (at any point in the job) and a post run job will delete any files left in the workspace.

# ...
steps:
  - uses: TooMuch4U/[email protected]
# - step 1
# - step 2
# - step 3
# - ...