Skip to content

Merge pull request #29 from opencost/atm/restructure-testharness #5

Merge pull request #29 from opencost/atm/restructure-testharness

Merge pull request #29 from opencost/atm/restructure-testharness #5

name: Update Manifest
on:
push:
branches:
- main
jobs:
update-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: ./
- name: update current plugin list
run: |
plugins=$(ls pkg/plugins | tr -s ' ' | sort)
echo "got plugins: $plugins"
echo '
# this manifest contains the name of every currently implemented plugin. it can be pulled via https:/opencost/opencost-plugins/raw/main/manifest to get an up to date list of current plugins.
' > manifest
echo "$plugins" >> manifest
echo "manifest updated"
echo "manifest contents:"
cat manifest
- uses: EndBug/add-and-commit@v9
name: commit updated manifest file
with:
add: 'manifest'
commit: --signoff
message: 'update manifest'
author_name: 'opencost-plugin-bot'