All checks were successful
Lint Pull Request / Lint PR Title (pull_request) Has been skipped
BREAKING CHANGE: Version 1
21 lines
425 B
YAML
21 lines
425 B
YAML
name: "Lint Pull Request"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint PR Title
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.base_ref != 'release'
|
|
|
|
steps:
|
|
- name: Install go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.24.2
|
|
|
|
- name: Run Pull Request Lint Action
|
|
uses: https://git.kjan.de/actions/pull-request-lint@main
|