Skip to content

Enhance function overloading support #95

Enhance function overloading support

Enhance function overloading support #95

# If someone with write access comments "/test-with-secrets" on a pull request, emit a repository_dispatch event
name: test-with-secrets
on:
issue_comment:
types: [ created ]
jobs:
test-with-secrets:
runs-on: ubuntu-latest
permissions:
pull-requests: write
# Only run for PRs, not issue comments and not on forks
if: ${{ github.event.issue.pull_request }} && github.repository_owner == 'Canner'
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/
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v3
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: test-with-secrets
permission: write