Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nto dev
  • Loading branch information
brenoepics committed May 25, 2024
2 parents 375ee71 + 5e02574 commit 7af8c08
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,23 @@ steps:
exampleVar: "Hello, World! This is an example variable."
```
<details>
<summary>Workflow Diagram</summary>
```mermaid
graph TD
A[GitHub Workflow] --> B[Checkout Action]
B --> C[PRP Preprocessor Action]
C --> D{Files with .prp extension?}
D -->|Yes| E[Process Files]
E --> F[Replace Variables]
F --> G[Commit Changes]
D -->|No| H[End Workflow]
G --> I[Push Changes]
I --> J[End Workflow]
```
</details>

## Usage

After installing the PRP Preprocessor, you can use it to replace variables in your `.prp.<any>` files.
Expand Down Expand Up @@ -69,7 +86,8 @@ Output:

## Inputs

Inputs can be found at [here](https://github.com/CIFriends/prp-preprocessor/wiki/Inputs).
You can find the list of inputs and their descriptions in the [action.yml](action.yml) file,
or you can read the [docs](https://github.com/CIFriends/prp-preprocessor/wiki/Inputs).

## Contributing

Expand Down

0 comments on commit 7af8c08

Please sign in to comment.