Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterjclaw/validate-generated-files
Action to validate generated files stored in a repository are up to date with regard to their inputs.
https://github.com/peterjclaw/validate-generated-files
actions compiled dependencies deterministic-build generation reproducible-builds
Last synced: about 1 month ago
JSON representation
Action to validate generated files stored in a repository are up to date with regard to their inputs.
- Host: GitHub
- URL: https://github.com/peterjclaw/validate-generated-files
- Owner: PeterJCLaw
- License: apache-2.0
- Created: 2023-09-16T20:45:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-24T22:10:14.000Z (about 1 year ago)
- Last Synced: 2024-04-25T15:22:13.531Z (7 months ago)
- Topics: actions, compiled, dependencies, deterministic-build, generation, reproducible-builds
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# validate-generated-files
A GitHub Action to validate generated files stored in a repository are up to
date with regard to their inputs.This is typically useful in contexts where, for one reason or another, generated
files are stored in a version control repository alongside their inputs.This Action is implemented in Python 3, which must be available within the
runner environment.## Usage
```yaml
steps:
- uses: PeterJCLaw/validate-generated-files@v1
with:
command: pip-compile
files: requirements*.txt
```