Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxxstorm committed Sep 26, 2022
1 parent da2c274 commit 5ed5abe
Show file tree
Hide file tree
Showing 8,575 changed files with 690,909 additions and 751 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/provider"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 3
reviewers:
- jaxxstorm
labels:
- dependencies
- dependabot
- package-ecosystem: gomod
directory: "/sdk"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 3
reviewers:
- jaxxstorm
labels:
- dependencies
- dependabot
13 changes: 13 additions & 0 deletions .github/workflows/artifact-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
jobs:
remove-old-artifacts:
runs-on: ubuntu-latest
steps:
- name: Remove old artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: 1 month
skip-tags: true
name: cleanup
"on":
schedule:
- cron: 0 1 * * *
37 changes: 37 additions & 0 deletions .github/workflows/command-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
permissions:
contents: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NUGET_PUBLISH_KEY: ${{ secrets.NUGET_PUBLISH_KEY }}
PROVIDER: dynatrace
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
PULUMI_API: https://api.pulumi.com
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/..
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget
PULUMI_TEST_OWNER: "lbrlabs"
PYPI_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
PYPI_USERNAME: "__token__"
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@v2
- uses: peter-evans/slash-command-dispatch@v2
with:
commands: run-acceptance-tests
issue-type: pull-request
permission: write
reaction-token: ${{ secrets.GITHUB_TOKEN }}
repository: jaxxstorm/pulumi-scaleway
token: ${{ secrets.PULUMI_BOT_TOKEN }}
strategy: {}
"on":
issue_comment:
types:
- created
- edited
Loading

0 comments on commit 5ed5abe

Please sign in to comment.