We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 186eed5 + 10fb3a6 commit 3aaabfcCopy full SHA for 3aaabfc
README.md
@@ -3,6 +3,9 @@ GitHub Action to fetch data from an API and save it to a file
3
4
## Inputs
5
6
+### `url`
7
+**Required** The url to fetch from.
8
+
9
### `file`
10
The file data is saved to. Default `actions/data.json`
11
@@ -11,5 +14,6 @@ The file data is saved to. Default `actions/data.json`
14
```
12
15
uses: actions/...
13
16
with:
17
+ url: 'https://fake-movie-database-api.herokuapp.com/api?s=batman'
18
file: 'backup/data.json'
-```
19
+```
0 commit comments