Skip to content

Commit

Permalink
Fix Indentation issue in README.md
Browse files Browse the repository at this point in the history
Some github actions examples uses:

uses: nus-oss/...
  with:
    inputs

which is the wrong format and it will result in 
parsing error. 

Let's remove the invalid indentation in README.md
  • Loading branch information
Eclipse-Dominator authored Jun 17, 2023
1 parent 7c3e0fe commit 9278762
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ jobs:
steps:
- name: Run Issue Digest Action
uses: nus-oss/GithubDigest@master
with:
timezone: "Singapore"
with:
timezone: "Singapore"
```

Add digest to monitor issues in another repository
Expand All @@ -97,9 +97,9 @@ jobs:
steps:
- name: Run Issue Digest Action
uses: nus-oss/GithubDigest@master
with:
repo: "some_owner/some_repo"
timezone: "Singapore"
with:
repo: "some_owner/some_repo"
timezone: "Singapore"
```

Add digest with your own custom PAT token
Expand All @@ -119,6 +119,6 @@ jobs:
steps:
- name: Run Issue Digest Action
uses: nus-oss/GithubDigest@master
with:
secret: ${{ secrets.YOUR_SECRET_TOKEN }}
with:
secret: ${{ secrets.YOUR_SECRET_TOKEN }}
```

0 comments on commit 9278762

Please sign in to comment.