diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ede9ccc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,44 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/provider" + schedule: + interval: "weekly" + time: "08:00" + day: "sunday" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + - package-ecosystem: "gomod" + directory: "/sdk" + schedule: + interval: "weekly" + day: "sunday" + time: "08:00" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "08:00" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + - package-ecosystem: "docker" + directory: "/.devcontainer" + schedule: + interval: "daily" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" diff --git a/.github/workflows/chart-lint-and-test.yml b/.github/workflows/chart-lint-and-test.yml index bc6c6bb..b2cfb67 100644 --- a/.github/workflows/chart-lint-and-test.yml +++ b/.github/workflows/chart-lint-and-test.yml @@ -3,8 +3,8 @@ on: pull_request: paths: - helm/** - - "!helm/pulumi-operator/README.md" - - "!helm/pulumi-operator/README.md.gotmpl" + - "!helm/README.md" + - "!helm/README.md.gotmpl" permissions: read-all diff --git a/.github/workflows/chart-publish.yaml b/.github/workflows/chart-publish.yaml index b87d95d..701b2bc 100644 --- a/.github/workflows/chart-publish.yaml +++ b/.github/workflows/chart-publish.yaml @@ -73,6 +73,6 @@ jobs: if [ -z "${pkg:-}" ]; then break fi - helm push "${pkg}" oci://ghcr.io/pulumi/helm-charts |& tee .digest + helm push "${pkg}" oci://ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts |& tee .digest cosign sign -y $(cat .digest | awk -F "[, ]+" '/Pushed/{print $NF}') done