Skip to content

extension-registry-changed #118

extension-registry-changed

extension-registry-changed #118

name: extension-registry-changed
on:
workflow_dispatch:
repository_dispatch:
types: [extension-registry-changed]
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Preserve
run: |
mkdir build
cp -p registry.json build/
- name: Download
run: curl -sL -o registry.json https://registry.k6.io/registry.json
- name: Update
run: |
if ! git diff -s --exit-code registry.json; then
echo "Automatic update" > build/msg.txt
echo "" >> build/msg.txt
${{ github.workspace }}/.github/compare build/registry.json registry.json >> build/msg.txt
git config --local user.email 'wayback[bot]@users.noreply.github.com'
git config --local user.name 'wayback[bot]'
git add registry.json
git commit -a -F build/msg.txt
git push
fi