Skip to content

Commit d5008c4

Browse files
committed
1.0.1
1 parent b270a25 commit d5008c4

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
11
<!-- DORAS-LINKS-START -->
22
<!-- 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "doras-action",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "index.js",
55
"scripts": {
66
"build": "tsc",

0 commit comments

Comments
 (0)