Skip to content

Commit a3b3917

Browse files
authored
🔄 synced file(s) with upbound/sa-up (#14)
* 🔄 synced local 'Makefile' with remote 'shared/configurations/Makefile' * 🔄 synced local '.github/workflows' with remote 'shared/configurations/workflows' * 🔄 synced local '.github/renovate.json5' with remote 'shared/configurations/renovate.json5' * 🔄 synced local '.github/CODEOWNERS' with remote '.github/CODEOWNERS' --------- Co-authored-by: upbound-bot <null>
1 parent 774c326 commit a3b3917

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* @upbound/team-solutions
2+
* @haarchri

.github/renovate.json5

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@
55
'helpers:pinGitHubActionDigests',
66
':semanticCommits',
77
],
8-
rebaseWhen: 'conflicted',
8+
rebaseWhen: 'auto',
9+
rebaseLabel: 'rebase',
910
prConcurrentLimit: 5,
11+
autoApprove: true,
12+
automerge: true,
13+
automergeType: 'pr',
1014
baseBranches: [
1115
'main',
1216
],

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
BUILD_ARGS: "--load"
5555

5656
- name: Publish Artifacts to GitHub
57-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
57+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
5858
with:
5959
name: output
6060
path: _output/**
6161

6262
- name: Login to Upbound
63-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
63+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
6464
if: env.XPKG_ACCESS_ID != ''
6565
with:
6666
registry: xpkg.upbound.io

.github/workflows/e2e.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: End to End Testing
33
on:
44
issue_comment:
55
types: [created]
6-
6+
pull_request:
7+
types: [labeled]
78
jobs:
89
e2e:
910
uses: upbound/official-providers-ci/.github/workflows/pr-comment-trigger.yml@main

.github/workflows/yamllint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
99
- name: yamllint
10-
uses: reviewdog/action-yamllint@1dca3ad811867be18fbe293a9818d715a6c2cd46 # v1.20.0
10+
uses: reviewdog/action-yamllint@f01d8a48fd8d89f89895499fca2cff09f9e9e8c0 # v1.21.0
1111
with:
1212
reporter: github-pr-review
1313
filter_mode: nofilter

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ PLATFORMS ?= linux_amd64
117117

118118
# Tool Versions
119119
# ------------------
120-
UP_VERSION = v0.38.0
120+
UP_VERSION = v0.39.0
121121
UP_CHANNEL = stable
122122
CROSSPLANE_CLI_VERSION = v1.18.0
123123
CROSSPLANE_VERSION = v1.18.0-up.1
@@ -150,6 +150,12 @@ UPTEST_DEFAULT_TIMEOUT ?= 2400s
150150
KCL_COMPOSITION_PATH ?= apis/kcl/generate.k
151151
LANG_KCL := $(shell find ./apis -type f -name '*.k')
152152

153+
# Overwrite example list if it is set by CI
154+
# For example with comment `/test-examples="path/to/example.yaml"`
155+
ifdef UPTEST_EXAMPLE_LIST
156+
UPTEST_INPUT_MANIFESTS=$(UPTEST_EXAMPLE_LIST)
157+
endif
158+
153159
# Include makelib files
154160
# ------------------
155161
-include build/makelib/common.mk

0 commit comments

Comments
 (0)