-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (31 loc) · 926 Bytes
/
fig.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Fig integration
on:
push:
branches:
- cli-command-help
jobs:
push-autocomplete-spec:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- run: npm run generate-autocomplete-spec
working-directory: packages/cli
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_PRIVATE_KEY }}
- name: Create Autocomplete PR
uses: withfig/push-to-fig-autocomplete-action@v1
with:
token: ${{ steps.generate_token.outputs.token }}
autocomplete-spec-name: barnard59
spec-path: packages/cli/fig-spec.js
integration: commander