Automated SDK generation @ azure-rest-api-specs 85ed8fc06e19c902c95b531cbd8a643428d5f28d #959
Workflow file for this run
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: pull-request-community-autoresponder | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
comment-on-pr: | |
name: Comment maintainer instructions | |
if: github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment PR | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
# Update existing comment if already exists | |
comment_tag: pull-request-contrib | |
message: | | |
Hi there 👋 Thank you for submitting a pull request. | |
Acceptance tests must be run by a maintainer. If a maintainer hasn't picked this up after 7 days, please do reach out to a [maintainer](https://github.com/pulumi/pulumi-azure-native/graphs/contributors) via our [community Slack](https://slack.pulumi.com/). | |
**Maintainers:** Please review changes then run tests by adding the comment: | |
``` | |
/run-acceptance-tests | |
``` | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |