We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b270a25 commit d5008c4Copy full SHA for d5008c4
README.md
@@ -1,2 +1,26 @@
1
<!-- DORAS-LINKS-START -->
2
<!-- DORAS-LINKS-END -->
3
+
4
+# Example usage
5
6
+```yml
7
+name: Update Doras Links
8
9
+on:
10
+ schedule:
11
+ - cron: "0 0 * * *" # Updates daily
12
13
+env:
14
+ DORAS_USERNAME: "your-username-here" # Set your username here for scheduled runs
15
16
+jobs:
17
+ update-readme:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v3
21
22
+ - name: Generate Doras Links
23
+ uses: dorasto/github-links@v1
24
+ with:
25
+ username: ${{ env.DORAS_USERNAME }}
26
+```
package.json
@@ -1,6 +1,6 @@
{
"name": "doras-action",
- "version": "1.0.0",
+ "version": "1.0.1",
"main": "index.js",
"scripts": {
"build": "tsc",
0 commit comments