Phillip Huang
Phillip Huang
``` on: workflow_call: inputs: services: required: true type: string description: contents of services.json jobs: build-lint-test: runs-on: ubuntu-latest strategy: matrix: service: ${{ fromJSON(inputs.services) }} exclude: - service: npm_project: foo steps: -...
I'm also getting this error when upgrading from 3.2.0 to 4.6.0 and I'm not sure why. It's theoretically possible for a session to expire after it's been read but before...
+1 to this. I would love to know whether this feature is being prioritized and whether there are any workarounds we can use in the meantime. All our services communicate...
@vkarpov15 see https://github.com/Automattic/mongoose/pull/14008
+1 to this. I've set `SEGMENT_DOWNLOAD_TIMEOUT_MINS` and I see the cache download respects that timeout, but the action still blocks even when the download fails. Can we please get a...
+1 to this issue. `chance.word()` has poor randomness because it defaults to 1-3 syllables. The workaround we use is to call e.g. `chance.word({length: 20})`. I think the default for this...
I also can't get this working, despite claimed flat config support. Any attempt by me to set `parserOptions.documents` fails with ``` error Parsing error: [graphql-eslint] Unable to find any GraphQL...
https://github.com/Automattic/mongoose/pull/13038 fixes this for `Model.create()`. @vkarpov15 @hasezoey would you be willing to accept this patch? edit: reading through this thread, I guess it's similar to what @FilipPyrek has been suggesting....
``` - name: Checkout repo uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - name: Run Datadog Synthetics tests uses: DataDog/synthetics-ci-github-action@848f9e3982cfbd4c925e79a3578b0f6da97a7d97 # v0.6.0 with: api_key: ${{ secrets.DATADOG_API_KEY }} app_key: ${{ secrets.DATADOG_APP_KEY }} test_search_query: tag:blocks_prod_deploy...
Yes, what @gaastonsr said is correct. In this example `a` is a workspace that depends on `b`. It is set up using [project references](https://www.typescriptlang.org/docs/handbook/project-references.html) so when `a` is compiled using...