31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
# WARNING: This file is autogenerated - changes will be overwritten when regenerated by https://github.com/pulumi/ci-mgmt
|
|
|
|
env:
|
|
PULUMI_API: https://api.pulumi-staging.io
|
|
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/..
|
|
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget
|
|
PULUMI_PROVIDER_AUTOMATION_TOKEN: ${{ secrets.PULUMI_PROVIDER_AUTOMATION_TOKEN }}
|
|
PULUMI_PULUMI_ENABLE_JOURNALING: "true"
|
|
TF_APPEND_USER_AGENT: pulumi
|
|
|
|
name: Comment on community PRs
|
|
on:
|
|
pull_request_target: {}
|
|
|
|
jobs:
|
|
comment-on-pr:
|
|
if: github.event.pull_request.head.repo.full_name != github.repository
|
|
name: comment-on-pr
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- name: Comment PR
|
|
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
message: >
|
|
PR is now waiting for a maintainer to run the acceptance tests.
|
|
|
|
**Note for the maintainer:** To run the acceptance tests, please comment */run-acceptance-tests* on the PR
|