fix: Don't panic when generating code for call graphs with a lot of branching #106
This file contains 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 | |
name: Ok To Test | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
ok-to-test: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
# Only run for PRs, not issue comments | |
if: ${{ github.event.issue.pull_request }} | |
steps: | |
# Generate a GitHub App installation access token from an App ID and private key | |
# To create a new GitHub App: | |
# https://developer.github.com/apps/building-github-apps/creating-a-github-app/ | |
# See app.yml for an example app manifest - you can use fake URLs when generating | |
# the app such as example.com urls. They do not need to properly resolve for the | |
# purpose that their app is being used for. | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- name: Slash Command Dispatch | |
uses: peter-evans/slash-command-dispatch@v4 | |
env: | |
TOKEN: ${{ steps.generate_token.outputs.token }} | |
with: | |
token: ${{ env.TOKEN }} # GitHub App installation access token | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-type: pull-request | |
commands: ok-to-test | |
permission: write |