Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/.github/workflows/operator-bundle.yaml

30 lines
633 B

name: operator bundle
on:
push:
paths:
- 'operator/**'
branches: [ main ]
pull_request:
paths:
- 'operator/**'
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
contents: "read"
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version-file: ./operator/go.mod
cache-dependency-path: ./operator/go.sum
- name: make bundle
run: |
make bundle-all && git diff --exit-code -I'^ createdAt: '
working-directory: ./operator