Skip to content

Commit

Permalink
Merge branch 'master' into master#release#v6.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ljakimczuk authored Sep 19, 2023
2 parents 9a95e0f + a97260c commit 6580329
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.add-team-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
done
echo "EOF" >> $GITHUB_ENV
- name: Apply label to issue
if: ${{ env.LABEL != '' }}
if: ${{ env.LABEL != '' && env.LABEL != 'null' && env.LABEL != null }}
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ secrets.ISSUE_AUTOMATION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zz_generated.add-to-project-board.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
echo "BOARD=${BOARD}" >> $GITHUB_ENV
- name: Add issue to personal board
if: ${{ env.BOARD != 'null' && env.BOARD != '' }}
if: ${{ env.BOARD != 'null' && env.BOARD != '' && env.BOARD != null }}
uses: actions/add-to-project@main
with:
project-url: ${{ env.BOARD }}
Expand All @@ -82,7 +82,7 @@ jobs:
echo "BOARD=${BOARD}" >> $GITHUB_ENV
- name: Add issue to team board
if: ${{ env.BOARD != 'null' && env.BOARD != '' }}
if: ${{ env.BOARD != 'null' && env.BOARD != '' && env.BOARD != null }}
uses: actions/add-to-project@main
with:
project-url: ${{ env.BOARD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.check_values_schema.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#
name: 'Values and schema'
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.create_release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#
name: Create Release
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.create_release_pr.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#
name: Create Release PR
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.gitleaks.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#
name: gitleaks

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#

include Makefile.*.mk
Expand Down
2 changes: 1 addition & 1 deletion Makefile.gen.app.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#

##@ App
Expand Down
2 changes: 1 addition & 1 deletion Makefile.gen.go.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.7.0
# devctl@6.9.0
#

APPLICATION := $(shell go list -m | cut -d '/' -f 3)
Expand Down
15 changes: 10 additions & 5 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
},
{
"excludePackagePatterns": [".*giantswarm.*" ,"^k8s.io", "^sigs.k8s.io"],
"excludePackageNames": ["github.com/imdario/mergo"],
"groupName": "misc modules"
},
{
Expand All @@ -32,8 +31,12 @@
"allowedVersions": "< 0.7.0"
},
{
"matchPackageNames": ["github.com/docker/docker"],
"allowedVersions": "<= v23.0.1+incompatible"
"matchPackageNames": ["helm.sh/helm/v3"],
"allowedVersions": "<= 3.11.3"
},
{
"matchPackageNames": ["github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring"],
"allowedVersions": "<= v0.64.0"
},
{
"matchPackagePatterns": ["^github.com/giantswarm/apiextensions*"],
Expand All @@ -48,9 +51,11 @@
".github/workflows/pre_commit_*.yaml"
],
"ignoreDeps": [
"actions/setup-go",
"architect",
"zricethezav/gitleaks-action",
"actions/setup-go"
"github.com/imdario/mergo",
"github.com/docker/distribution",
"zricethezav/gitleaks-action"
],
"regexManagers": [
{
Expand Down

0 comments on commit 6580329

Please sign in to comment.