Importing a resource with .
in the name converts it to _
but it gets saved with .
in the stack
#1169
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@v4 | |
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 |