Skip to content

docs: Update Lido docs for tier 1 CSM integration + monitoring command #225

docs: Update Lido docs for tier 1 CSM integration + monitoring command

docs: Update Lido docs for tier 1 CSM integration + monitoring command #225

Workflow file for this run

name: Check Docker images for updates
on:
push:
branches:
- develop
workflow_dispatch:
jobs:
build:
name: Check for updates
runs-on: ubuntu-latest
steps:
- name: Checkout Sedge repo
uses: actions/checkout@v4
- name: Authenticate App
id: gh-app
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Run update check script
run: chmod +x ./scripts/check-image-updates.sh && ./scripts/check-image-updates.sh
env:
PAT: ${{ steps.gh-app.outputs.token }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ steps.gh-app.outputs.token }}
commit-message: Update image versions to latest version.
title: "[Update] Update image versions"
reviewers: AntiD2ta, adriantpaez, stdevMac, cbermudez97
branch: feature/update-container-images
draft: false