-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This updates our GitHub workflows to use ones generated by ci-mgmt, and then updates Makefile targets and other pieces to build cleanly against those workflows. Fixes #28 Fixes #27 Note the repo has some examples but these aren't hooked up to CI testing yet -- that is #26.
- Loading branch information
Showing
53 changed files
with
8,806 additions
and
1,326 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,58 @@ | ||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt | ||
|
||
name: command-dispatch | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
- edited | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} | ||
PROVIDER: kubernetes-cert-manager | ||
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | ||
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NUGET_PUBLISH_KEY: ${{ secrets.NUGET_PUBLISH_KEY }} | ||
PYPI_USERNAME: __token__ | ||
PYPI_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | ||
TRAVIS_OS_NAME: linux | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/.. | ||
PUBLISH_REPO_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
PUBLISH_REPO_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} | ||
SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} | ||
SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} | ||
GOVERSION: 1.21.x | ||
NODEVERSION: 20.x | ||
PYTHONVERSION: "3.11" | ||
DOTNETVERSION: | | ||
6.0.x | ||
3.1.301 | ||
JAVAVERSION: "11" | ||
AWS_REGION: us-west-2 | ||
PULUMI_TEST_OWNER: moolumi | ||
GOLANGCI_LINT_VERSION: v1.55.2 | ||
GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: [email protected] | ||
GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci | ||
GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci | ||
GOOGLE_PROJECT_NUMBER: 637339343727 | ||
jobs: | ||
command-dispatch-for-testing: | ||
runs-on: ubuntu-latest | ||
name: command-dispatch-for-testing | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: peter-evans/slash-command-dispatch@v2 | ||
with: | ||
token: ${{ secrets.PULUMI_BOT_TOKEN }} | ||
reaction-token: ${{ secrets.GITHUB_TOKEN }} | ||
commands: run-acceptance-tests | ||
permission: write | ||
issue-type: pull-request | ||
repository: pulumi/pulumi-kubernetes-cert-manager | ||
if: ${{ github.event.issue.pull_request }} |
Oops, something went wrong.