File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11name : " Recent Posts"
22author : " Ian Thompson"
33description : " Get the most recent blog post metadata."
4- runs :
5- using : " docker"
6- image : " Dockerfile"
7-
84inputs :
95 num-entries :
106 description : " Number of blog entries to show"
117 required : false
12- default : 5
8+ default : 5
9+
10+ runs :
11+ using : " docker"
12+ image : " Dockerfile"
13+ args :
14+ - ${{ inputs.num-entries }}
Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ jobs:
1313 uses : actions/checkout@v4
1414
1515 - name : Recent post action
16- uses : " it176131/it176131.github.io/.github/actions/recent-posts@recent-posts"
16+ # uses: "it176131/it176131.github.io/.github/actions/recent-posts@recent-posts"
17+ uses : " ./.github/actions/recent-posts"
18+ with :
19+ num-entries : 5
1720
1821 - name : Commit README
1922 run : |
2023 git config user.email github-actions@github.com
2124 git config user.name github-actions
2225 git add README.md
2326 git commit -m "Synced and updated with most recent it176131.github.io blog post"
24- git push
27+ # git push
You can’t perform that action at this time.
0 commit comments