Skip to content

run the lint only in the linux (#3797) #1235

run the lint only in the linux (#3797)

run the lint only in the linux (#3797) #1235

Workflow file for this run

name: Generate Docs
on:
push:
branches:
- main
jobs:
cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Generate CLI Docs
run: ./scripts/gen-cli-docs
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
with:
title: "docs(cli): update generated docs"
commit-message: "docs(cli): update generated docs"
body: ""
branch: feat/gen-cli-docs
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"