diff --git a/README.md b/README.md index 51a820d..744a771 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,28 @@ # fivem-resource-watcher -This action prints "Hello World" or "Hello" + the name of a person to greet to the log. +fivem-resource-watcher GitHub Action allows you to restart resources remotely via rcon. + +## Features + +- Detects change detection + +- Restart only resources that have been changed + +- Restart the whole server on changes + +- Resource filters (Coming Soon) + +## Inputs + + + +This action alone only does part of the automation. In order to actually make the restarts useful, we need to pull the remote changes first on the Server so that the changes are live after the restart. This doc will go through all the changes that you need to make in order to have a fully working pipeline. You workflow will look like the following after the pipeline is set up: + +- You make the changes in your local clone of the repository +- You push the changes to the repository +- The pipeline will pull the changes that you just pushed, into your server automatically +- The pipeline will only restart the resources that you made changes to automatically, or it will restart the whole server depending on what you have configured + ## Inputs diff --git a/action.yml b/action.yml index 93414af..ea1eed2 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ inputs: required: true default: "" resourcesFolder: - description: "Resources folder" + description: "Path to resources folder" required: false default: "resources" runs: