Investigate OOMKills in test #7459
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
| # If someone with write access comments "/ok-to-test" on a pull request, emit a repository_dispatch event | |
| # Adapted from: https://github.com/imjohnbo/ok-to-test/blob/master/.github/workflows/ok-to-test.yml | |
| name: Ok to test | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: {} | |
| jobs: | |
| ok-to-test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write # Required to add reaction to the /ok-to-test comment | |
| # Only run for PRs, not issue comments | |
| if: ${{ github.event.issue.pull_request }} | |
| steps: | |
| - name: Create token | |
| uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # pinned to v3.2.0 | |
| id: app-token | |
| with: | |
| # required | |
| app-id: ${{ secrets.AUTOMATION_ID }} | |
| private-key: ${{ secrets.AUTOMATION_KEY }} | |
| - name: Slash Command Dispatch | |
| uses: peter-evans/slash-command-dispatch@9bdcd7914ec1b75590b790b844aa3b8eee7c683a # pinned to v5.0.2 | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-type: pull-request | |
| commands: ok-to-test | |
| permission: write |