We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78bd68 commit a463a51Copy full SHA for a463a51
1 file changed
.github/workflows/release.yml
@@ -2,6 +2,11 @@ name: Release
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ skip_lingo:
7
+ description: "Skip Lingo.dev step"
8
+ type: "boolean"
9
+ default: false
10
push:
11
branches:
12
- main
@@ -56,6 +61,7 @@ jobs:
56
61
run: pnpm install
57
62
58
63
- name: Lingo.dev
64
+ if: ${{ !inputs.skip_lingo }}
59
65
uses: ./
60
66
with:
67
api-key: ${{ secrets.LINGODOTDEV_API_KEY }}
0 commit comments