We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8d235b commit e4ff78bCopy full SHA for e4ff78b
1 file changed
.github/workflows/UpdateReadme.yml
@@ -0,0 +1,19 @@
1
+name: Update README with ABOUT.md and INSTALL.md
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 6 * * 1' # every Monday at 06:00 UTC
6
+ workflow_dispatch: # manual trigger
7
8
+jobs:
9
+ call-shared:
10
+ if: ${{ hashFiles('README.template.md') != '' }} # only run if the file exists
11
+ uses: control-toolbox/CTActions/.github/workflows/update-readme.yml@main
12
+ with:
13
+ template_file: README.template.md
14
+ output_file: README.md
15
+ package_name: Tutorials # package for INSTALL.md
16
+ repo_name: Tutorials.jl # repository for CONTRIBUTING.md links
17
+ citation_badge: "[](https://zenodo.org/doi/10.5281/zenodo.16753152)" # example, can be empty
18
+ assignee: "ocots"
19
+ secrets: inherit
0 commit comments