Skip to content

Update image ghcr.io/esphome/esphome to v2024.10.2 #909

Update image ghcr.io/esphome/esphome to v2024.10.2

Update image ghcr.io/esphome/esphome to v2024.10.2 #909

Workflow file for this run

name: PR Diffs
on:
workflow_dispatch:
pull_request:
types: [edited]
jobs:
diffs:
name: Compute diffs
runs-on: ubuntu-latest
strategy:
matrix:
resource:
- helmrelease
- kustomization
steps:
- name: Setup Flux CLI
uses: fluxcd/flux2/action@v2.4.0
- uses: allenporter/flux-local/action/diff@6.0.0
id: diff
with:
live-branch: main
path: cluster
resource: ${{ matrix.resource }}
- name: PR Comments
uses: mshick/add-pr-comment@v2
if: ${{ steps.diff.outputs.diff != '' }}
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
message-id: ${{ github.event.pull_request.number }}/${{ matrix.resource }}
message-failure: Unable to post kustomization diff
message: |
`````diff
${{ steps.diff.outputs.diff }}
`````