DeadLetterQueueWriter: regression in 9.4.2 — oldestSegmentPath() refactor from File.length() to Files.size() introduces TOCTOU race causing permanent writer failure and pipeline blackout #867
This file contains hidden or 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: Add to project | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| permissions: | |
| contents: none | |
| jobs: | |
| add-to-project: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: octokit/graphql-action@v2.x | |
| id: add_to_project | |
| with: | |
| headers: '{"GraphQL-Features": "projects_next_graphql"}' | |
| query: | | |
| mutation add_to_project($projectid:ID!,$contentid:ID!) { | |
| addProjectV2ItemById(input:{projectId:$projectid contentId:$contentid}) { | |
| clientMutationId | |
| } | |
| } | |
| projectid: "PVT_kwDOAGc3Zs4AMlnl" | |
| contentid: ${{ github.event.issue.node_id }} | |
| GITHUB_TOKEN: ${{ secrets.PROJECT_TOKEN }} |