All checks were successful
Lint Pull Request / Lint Pr Title (pull_request) Successful in 9s
21 lines
438 B
YAML
21 lines
438 B
YAML
name: "Lint Pull Request"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Pr Title
|
|
runs-on: ubuntu-latest
|
|
|
|
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
|
|
|
|
- run: cat /var/run/act/workflow/event.json
|