[0.86] Update Hermes to include a fix for CPU samples on Apple platforms #531
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: Respond on New Pick Request | |
| on: | |
| issues: | |
| types: [labeled] | |
| permissions: | |
| issues: write | |
| jobs: | |
| publish-message: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Publish Message | |
| uses: actions/github-script@v7 | |
| if: github.event.label.name == 'Type Pick Request' | |
| with: | |
| script: | | |
| const { data } = await github.rest.repos.getContent({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| path: '.github/workflows/templates/pick-request-hello-message.md', | |
| }); | |
| const message = Buffer.from(data.content, 'base64').toString('utf8'); | |
| await github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: message | |
| }); |