feat: Add lido-exporter alert rules and alertmanager for monitoring s… #217
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |