-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (39 loc) · 1.45 KB
/
update-manifest.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Update Manifest
on:
push:
branches:
- main
jobs:
update-manifest:
runs-on: ubuntu-latest
steps:
- name: echo actor
run: echo "actor is ${{ github.actor }}"
- uses: actions/checkout@v4
with:
path: ./
ssh-key: ${{ secrets.GH_SSH_KEY}}
persist-credentials: true
- 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://github.com/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
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@noreply.example.com"
git config --local user.name "github-actions[bot]"
git add manifest || true
git commit -m "update manifest" || true
- name: update manifest
uses: ad-m/github-push-action@master
with:
ssh: true
directory: .
repository: opencost/opencost-plugins
branch: main