Skip to content

Test action

Test action #2

name: Updste LibreNMS appVersion
on:
push:
branches:
- renovate/*
jobs:
set-appverions:
runs-on: ubuntu-24.04
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install YQ
run: |
sudo add-apt-repository ppa:rmescandon/yq
sudo apt update
sudo apt install yq -y
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5