Skip to content

Merge pull request #29 from abgox/module #74

Merge pull request #29 from abgox/module

Merge pull request #29 from abgox/module #74

Workflow file for this run

name: Update
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Generate list and update README content
run: |
.\scripts\auto-update-readme.ps1
- name: update completions.json
run: |
.\scripts\auto-update-completions.json.ps1
- name: Commit and push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "${{ github.actor }}"
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git add .
git commit -m "[bot] update README and completions.json"
git push