Syscall Timeout for evtNext in Windows Event Log Receiver #2882
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: "Approve Pending Workflows" | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| permissions: read-all | |
| jobs: | |
| approve-workflows: | |
| if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/workflow-approve') && github.repository_owner == 'open-telemetry' }} | |
| permissions: | |
| actions: write | |
| contents: read | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 | |
| id: otelbot-token | |
| with: | |
| app-id: ${{ vars.OTELBOT_APP_ID }} | |
| private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }} | |
| - name: Run approve-workflows.sh | |
| run: ./.github/workflows/scripts/approve-workflows.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ORG_TOKEN: ${{ steps.otelbot-token.outputs.token }} | |
| PR_NUMBER: ${{ github.event.issue.number }} | |
| COMMENT: ${{ github.event.comment.body }} | |
| SENDER: ${{ github.event.comment.user.login }} |