Josh Gross

Results 82 comments of Josh Gross
trafficstars

> It looks like there plugin-retry of octokit is using > [const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);](https://github.com/octokit/plugin-retry.js/blob/f29b398b023690e9c265be72126d8044cd91c60f/src/error-request.ts#L13) > as value for retry. Could you explain your use...

Could you share a copy of your workflow? Does it have sufficient permissions to delete files?

``` const ref = $(curl -s -H "Authorization: Bearer ${{ secrets.GIT_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/actions/runs?event=pull_request&branch=${{ github.head_ref }}&status=completed&per_page=1" | jq -r '.workflow_runs[0].id'); ``` This looks like you're mixing bash syntax and...

👋 @root-ansh-ct are you still experiencing this issue? Could you provide logs and the specific section of your workflow that's failing?

Have you tried using the GraphQL Discussions API? https://docs.github.com/en/graphql/guides/using-the-graphql-api-for-discussions I don't see any documentation for a REST API, so it may not exist.

I could not figure out how to cleanly fix this, I imagine it would take some changes to `reverse_markdown` which doesn't appear to be actively maintained. #187 contains a very...

| **Foo** | **Bar** | | --- | --- | | One | Two | | Three | Four | | FiveSixSeven | Row With Newlines | Looks great, thanks...

I think an `unsafeWriteRetries` option would work, as it clarifies that it's potentially dangerous. Making the consumer implement their own retries is fine, but ends up just duplicating code that's...

👋 Sorry for the delay, this issue got lost on our backlog and we can definitely do better here. I'll follow up tomorrow on updating the UUID we use, whether...

https://github.com/actions/toolkit/pull/1824 will remove this direct dependency, we'll need another update for any packages that have an indirect dependency on `uuid` through `@actions/core` after that new version is released. `@actions/core` isn't...