build(deps): bump gradle/gradle-build-action from 2.4.2 to 3.5.0 #1097
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: Command Dispatch for PR events | |
on: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
# When `/run-acceptance-tests` comment is added on a PR, dispatches | |
# "${commands}{event-type-suffix}" == "run-acceptance-tests-command" event. | |
command-dispatch-for-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Build | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.PULUMI_BOT_TOKEN }} | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
commands: run-acceptance-tests | |
event-type-suffix: -command | |
permission: write | |
issue-type: pull-request | |
repository: pulumi/pulumi-java |