fix: Add jsonb field option. If true, the field's value is stored in … #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate pull request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
conventional-commits-pr: | |
if: github.event.pull_request.draft == false | |
name: Validate Conventional Commits PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: crazy-max/ghaction-dump-context@v1 | |
- uses: catalystsquad/action-validate-conventional-commits-pr@v1 | |
generate: | |
name: Generate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: crazy-max/ghaction-dump-context@v1 | |
- uses: actions/checkout@v3 | |
- name: Setup Go With Caching | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Setup Buf | |
uses: bufbuild/buf-setup-action@v1.19.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
make generate | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'chore: regenerated options and examples' | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: crazy-max/ghaction-dump-context@v1 | |
- uses: actions/checkout@v3 | |
- name: Setup Go With Caching | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Setup Buf | |
uses: bufbuild/buf-setup-action@v1.19.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
make test | |
release-dry-run: | |
name: Release Dry Run | |
runs-on: ubuntu-latest | |
steps: | |
- uses: crazy-max/ghaction-dump-context@v1 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go With Caching | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Get semver-tags | |
run: | | |
go install github.com/catalystsquad/semver-tags@latest | |
semver-tags -h | |
- name: Semver Tags | |
id: semver-tags | |
run: | | |
semver-tags run --dry_run --github_action | yq -P -o=json "." | |
- name: tags-output | |
run: | | |
echo "new_release_published: ${{ steps.semver-tags.outputs.new_release_published }}" || true | |
echo "new_release_version: ${{ steps.semver-tags.outputs.new_release_version }}" || true | |
echo "new_release_major_version: ${{ steps.semver-tags.outputs.new_release_major_version }}" || true | |
echo "new_release_published: ${{ steps.semver-tags.outputs.new_release_published }}" || true | |
echo "new_release_patch_version: ${{ steps.semver-tags.outputs.new_release_patch_version }}" || true | |
echo "new_release_git_head: ${{ steps.semver-tags.outputs.new_release_git_head }}" || true | |
echo "new_release_git_tag: ${{ steps.semver-tags.outputs.new_release_git_tag }}" || true | |
echo "last_release_version: ${{ steps.semver-tags.outputs.last_release_version }}" || true | |
echo "last_release_git_head: ${{ steps.semver-tags.outputs.last_release_git_head }}" || true | |
echo "last_release_git_tag: ${{ steps.semver-tags.outputs.last_release_git_tag }}" || true |