-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
3,214 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
provider: aws | ||
lint: false | ||
major-version: 6 | ||
parallel: 1 | ||
timeout: 150 | ||
generate-nightly-test-workflow: true | ||
providerVersion: github.com/hashicorp/terraform-provider-aws/version.ProviderVersion | ||
env: | ||
PULUMI_MISSING_DOCS_ERROR: true | ||
AWS_REGION: "us-west-2" | ||
makeTemplate: bridged | ||
plugins: | ||
- name: archive | ||
version: "0.0.1" | ||
- name: tls | ||
version: "4.10.0" | ||
- name: github | ||
version: "4.10.0" | ||
- name: kubernetes | ||
version: "3.17.0" | ||
- name: random | ||
version: "4.8.2" | ||
- name: github | ||
version: "5.14.0" | ||
team: ecosystem | ||
goBuildParallelism: 2 | ||
javaGenVersion: "v0.9.5" |
51 changes: 51 additions & 0 deletions
51
provider-ci/providers/aws/repo/.github/workflows/command-dispatch.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt | ||
|
||
env: | ||
PROVIDER: aws | ||
AWS_REGION: us-west-2 | ||
DOTNETVERSION: | | ||
6.0.x | ||
3.1.301 | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOVERSION: 1.20.1 | ||
JAVAVERSION: "11" | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NODEVERSION: 16.x | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NUGET_PUBLISH_KEY: ${{ secrets.NUGET_PUBLISH_KEY }} | ||
PUBLISH_REPO_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
PUBLISH_REPO_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | ||
PULUMI_API: https://api.pulumi-staging.io | ||
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/.. | ||
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget | ||
PULUMI_MISSING_DOCS_ERROR: true | ||
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
PYTHONVERSION: "3.9" | ||
SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} | ||
SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} | ||
SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
TF_APPEND_USER_AGENT: pulumi | ||
TRAVIS_OS_NAME: linux | ||
jobs: | ||
command-dispatch-for-testing: | ||
name: command-dispatch-for-testing | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
- uses: peter-evans/slash-command-dispatch@v2 | ||
with: | ||
commands: run-acceptance-tests | ||
issue-type: pull-request | ||
permission: write | ||
reaction-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: pulumi/pulumi-aws | ||
token: ${{ secrets.PULUMI_BOT_TOKEN }} | ||
name: command-dispatch | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
- edited |
44 changes: 44 additions & 0 deletions
44
provider-ci/providers/aws/repo/.github/workflows/community-moderation.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
jobs: | ||
warn_codegen: | ||
name: warn_codegen | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
- id: schema_changed | ||
name: Check for diff in schema | ||
uses: dorny/paths-filter@v2 | ||
with: | ||
filters: "changed: 'provider/cmd/**/schema.json'" | ||
- id: sdk_changed | ||
if: steps.schema_changed.outputs.changed == 'false' | ||
name: Check for diff in sdk/** | ||
uses: dorny/paths-filter@v2 | ||
with: | ||
filters: "changed: 'sdk/**'" | ||
- if: steps.sdk_changed.outputs.changed == 'true' && | ||
github.event.pull_request.head.repo.full_name != github.repository | ||
name: Send codegen warning as comment on PR | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
message: > | ||
Hello and thank you for your pull request! :heart: :sparkles: | ||
It looks like you're directly modifying files in the language SDKs, many of which are autogenerated. | ||
Be sure any files you're editing do not begin with a code generation warning. | ||
For generated files, you will need to make changes in `resources.go` instead, and [generate the code](https://github.com/pulumi/${{ github.event.repository.name }}/blob/master/CONTRIBUTING.md#committing-generated-code). | ||
name: warn-codegen | ||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
- master | ||
types: | ||
- opened |
Oops, something went wrong.