You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,14 +29,14 @@ _Note: If you give personal repositories access then they will be added to the s
29
29
30
30
## Action Setup
31
31
32
-
GitHub actions can be integrated in any repository. Create a new folder called `.github/workflows/<any-name>.yml`. Paste the following starter code:
32
+
GitHub actions can be integrated into any repository. Create a new folder called `.github/workflows/<any-name>.yml`. Paste the following starter code:
33
33
34
34
```yml
35
35
name: Update Projects
36
36
on:
37
37
schedule:
38
38
- cron: '0 0 * * *'
39
-
# This makes the action to run at the end of every day. Customize this accordingly or you can also trigger this action for GitHub events (Pull, Push). Check the GitHub actions page for that.
39
+
# This makes the action run at the end of every day. Customize this accordingly or you can also trigger this action for GitHub events (Pull, Push). Check the GitHub actions page for that.
40
40
workflow_dispatch:
41
41
# workflow_dispatch allows you to trigger the action any time manually
42
42
@@ -56,9 +56,9 @@ jobs:
56
56
| Option | Default Value | Description | Required | Example |
| `gh_token` | NA | GitHub Personal Access token | Yes | NA |
59
-
| `file_name` | `README.md` | Name of the readme file or any other file containing the comment mentioned above. Note: The file needs to be in root of repository. (Dynamic paths coming in next version!) | No | myfile.txt/ myfile.html |
59
+
| `file_name` | `README.md` | Name of the readme file or any other file containing the comment mentioned above. Note: The file needs to be at the root of the repository. (Dynamic paths coming in next version!) | No | myfile.txt/ myfile.html |
60
60
| `max_repo_description` | 50 | How much description you want to Display | No | 40 |
61
-
| `allow_forks` | True | Control if you want to display number of forks of the repository | No | False |
61
+
| `allow_forks` | True | Control if you want to display the number of forks of the repository | No | False |
0 commit comments