[cherry-pick][gql] need to add object_status=0 to use partial indexes (#20176) #54089
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: Changesets CI | |
on: pull_request | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # [email protected] | |
with: | |
version: 9.1.1 | |
- name: Install Nodejs | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # [email protected] | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- id: diff | |
name: Determine changed public packages from previous commit | |
run: echo "hasChanges=$(pnpm list --filter "...[$(git rev-parse HEAD^1)]" --depth -1 --json | jq "any(.[] | select(.private != true) ; length > 0)")" >> $GITHUB_OUTPUT | |
- name: Get changed files in the changesets folder | |
id: has-changesets | |
uses: tj-actions/changed-files@0874344d6ebbaa00a27da73276ae7162fadcaf69 # [email protected] | |
with: | |
files: | | |
.changeset/** | |
- name: Create missing changeset note if there are missing changesets | |
if: steps.has-changesets.outputs.any_changed != 'true' && steps.diff.outputs.hasChanges == 'true' | |
run: | | |
echo "true" > missing-changeset.txt | |
- name: Upload missing changeset artifact | |
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # pin@v3 | |
if: steps.has-changesets.outputs.any_changed != 'true' && steps.diff.outputs.hasChanges == 'true' | |
with: | |
name: missing-changeset | |
path: missing-changeset.txt | |
if-no-files-found: error | |
retention-days: 1 | |
- name: Attempt to create snapshots. | |
run: pnpm changeset version --snapshot test-do-not-publish |