Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @upbound/team-solutions
* @haarchri
6 changes: 5 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
'helpers:pinGitHubActionDigests',
':semanticCommits',
],
rebaseWhen: 'conflicted',
rebaseWhen: 'auto',
rebaseLabel: 'rebase',
prConcurrentLimit: 5,
autoApprove: true,
automerge: true,
automergeType: 'pr',
baseBranches: [
'main',
],
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ jobs:
BUILD_ARGS: "--load"

- name: Publish Artifacts to GitHub
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: output
path: _output/**

- name: Login to Upbound
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
if: env.XPKG_ACCESS_ID != ''
with:
registry: xpkg.upbound.io
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: End to End Testing
on:
issue_comment:
types: [created]

pull_request:
types: [labeled]
jobs:
e2e:
uses: upbound/official-providers-ci/.github/workflows/pr-comment-trigger.yml@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: yamllint
uses: reviewdog/action-yamllint@1dca3ad811867be18fbe293a9818d715a6c2cd46 # v1.20.0
uses: reviewdog/action-yamllint@f01d8a48fd8d89f89895499fca2cff09f9e9e8c0 # v1.21.0
with:
reporter: github-pr-review
filter_mode: nofilter
Expand Down
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ PLATFORMS ?= linux_amd64

# Tool Versions
# ------------------
UP_VERSION = v0.38.0
UP_VERSION = v0.39.0
UP_CHANNEL = stable
CROSSPLANE_CLI_VERSION = v1.18.0
CROSSPLANE_VERSION = v1.18.0-up.1
Expand Down Expand Up @@ -150,6 +150,12 @@ UPTEST_DEFAULT_TIMEOUT ?= 2400s
KCL_COMPOSITION_PATH ?= apis/kcl/generate.k
LANG_KCL := $(shell find ./apis -type f -name '*.k')

# Overwrite example list if it is set by CI
# For example with comment `/test-examples="path/to/example.yaml"`
ifdef UPTEST_EXAMPLE_LIST
UPTEST_INPUT_MANIFESTS=$(UPTEST_EXAMPLE_LIST)
endif

# Include makelib files
# ------------------
-include build/makelib/common.mk
Expand Down
Loading