name: "Publish version"
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
push-to-fig-autocomplete:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- name: Generate the spec
run:
## Execute commands to generate the spec through some official or third party integration
- name:
Create Autocomplete PR
## Create the autocomplete PR using this action
uses: withfig/publish-to-fig-autocomplete@v2
with:
token: ${{ secrets.YOUR_PAT_HERE }}
autocomplete-spec-name: generated-spec
spec-path: path/to/generated-spec.ts
integration: commander
## Other jobs not related to the spec updatetoken: a GitHub personal access token with repo scope (default:GITHUB_TOKEN)autocomplete-spec-name(required): the name of the spec in the autocomplete repo in the form[scope/]namewhere name is the spec filename in the autocomplete repo. Examples:- if the spec relative path in the autocomplete repo is
src/npm.ts, thenautocomplete-spec-nameisnpm - if the spec relative path in the autocomplete repo is
src/@withfig/autocomplete-tools.ts, thenautocomplete-spec-nameis@withfig/autocomplete-tools
- if the spec relative path in the autocomplete repo is
spec-path(required): the path of the generated spec in the current repospec-folder-path: The path to an additional folder with specs in the repo, used for very large specs which useloadSpecintegration: the name of the official Fig integration used See. Supported values:"commander" | "oclif" | "cobra" | "clap" | "swift-argument-parser" | "click" | "cement" | "argparse"pr-body: set a custom PR body description
We also provide support for third party autocomplete repos via the following inputs:
repo-org: name of the organization/user that stores the third party autocomplete repository (default:withfig)repo-name: name of the third party autocomplete repository (default:autocomplete)diff-based-versioning: use new diff-based versioning (default: false) (requires:new-spec-versionto be set ifdiff-based-versioningis true)new-spec-version: the new spec version (only required when using diff-based-versioning)use-minor-base: create a new version file per each minor version (only used with diff-based-versioning) (default:false)
NOTE: third party autocomplete repos must be structured as the official autocomplete one. Run
npx @withfig/autocomplete-tools@latest initto generate one.