Skip to content

chore: update to latest release action #1

chore: update to latest release action

chore: update to latest release action #1

Workflow file for this run

---
name: Check PR
on: [pull_request]
jobs:
checks:
runs-on: ubuntu-latest
env:
BUILD_IN_CONTAINER: false
container:
image: grafana/loki-build-image:0.33.0
steps:
- uses: actions/checkout@v4
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- run: make lint
- run: make check-doc
- run: make check-mod
- run: make validate-example-configs
- run: make check-example-config-doc
- run: make check-drone-drift
- run: make check-generated-files
- run: make test
check-title:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}