* Update workflow to make amending previous commit * Add Alan, Amber, llrl, Pangaea * Add Alan, Amber, llrl, Pangaea * Add Cotowali, FreakC, Power Fx, Tokay * Add Cotowali, FreakC, Power Fx, Tokay * Update llrl.llrl * Update Pangaea.pangaea and Power Fx.pfx Co-authored-by: gnuhead-chieb <gnuhead-chieb@users.noreply.github.com>
29 lines
681 B
YAML
29 lines
681 B
YAML
name: Update Readme
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Update Readme
|
|
run: python update_list.py
|
|
|
|
- id: last-commit-message
|
|
run: echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: ${{ steps.last-commit-message.outputs.msg }}
|
|
commit_options: '--amend --no-edit'
|
|
push_options: '--force'
|
|
skip_fetch: true
|