Skip to content

Commit a463a51

Browse files
feat: add skip_lingo option to Release workflow (#705)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Max Prilutskiy <maks.prilutskiy@gmail.com>
1 parent f78bd68 commit a463a51

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Release
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
skip_lingo:
7+
description: "Skip Lingo.dev step"
8+
type: "boolean"
9+
default: false
510
push:
611
branches:
712
- main
@@ -56,6 +61,7 @@ jobs:
5661
run: pnpm install
5762

5863
- name: Lingo.dev
64+
if: ${{ !inputs.skip_lingo }}
5965
uses: ./
6066
with:
6167
api-key: ${{ secrets.LINGODOTDEV_API_KEY }}

0 commit comments

Comments
 (0)