mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-05 15:59:22 +00:00
[NAK_CVR_Mods] Experiment
This commit is contained in:
parent
364de89b30
commit
0564de3ebf
2 changed files with 89 additions and 0 deletions
34
.github/workflows/update-modlist.yml
vendored
Normal file
34
.github/workflows/update-modlist.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Update Mod List in README
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**/README.md'
|
||||
- '.github/workflows/update-modlist.yml'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-readme:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install gray-matter
|
||||
|
||||
- name: Generate mod list
|
||||
run: node .github/scripts/update-modlist.js
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git add README.md
|
||||
git commit -m "[NAK_CVR_Mods] Update mod list in README" || echo "No changes to commit"
|
||||
git push
|
Loading…
Add table
Add a link
Reference in a new issue