reject overloads that require conversion in var
position
#1660
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
name: Dispatch slash commands | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
dispatch_pr: | |
if: github.event.issue.pull_request | |
name: Dispatch on Pull Request comments | |
runs-on: ubuntu-latest | |
steps: | |
- id: token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.CHORE_APP_ID }} | |
private-key: ${{ secrets.CHORE_APP_KEY }} | |
- uses: peter-evans/slash-command-dispatch@v4 | |
with: | |
token: ${{ steps.token.outputs.token }} | |
reaction-token: ${{ steps.token.outputs.token }} | |
commands: | | |
merge | |
generate-changelog | |
issue-type: pull-request | |
permission: write |