Skip to content

Commit

Permalink
Align files (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
architectbot and actions-user authored Dec 1, 2023
1 parent 47089f2 commit fb6519a
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
architect: giantswarm/architect@4.33.0
architect: giantswarm/architect@4.35.5

workflows:
package-and-push-chart-on-tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.14.0
# devctl@6.17.1
#
version: 2
updates:
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.14.0
# devctl@6.17.1
#
name: 'Values and schema'
on:
Expand Down
9 changes: 4 additions & 5 deletions .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.14.0
# devctl@6.17.1
#
name: Create Release
on:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
uses: giantswarm/[email protected]
with:
binary: "architect"
version: "6.11.0"
version: "6.13.0"
- name: Install semver
uses: giantswarm/[email protected]
with:
Expand Down Expand Up @@ -184,13 +184,12 @@ jobs:
git push "${REMOTE_REPO}" --tags
- name: Create release
id: create_gh_release
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: "${{ secrets.TAYLORBOT_GITHUB_ACTION }}"
with:
body: ${{ steps.changelog_reader.outputs.changes }}
tag_name: "v${{ needs.gather_facts.outputs.version }}"
release_name: "v${{ needs.gather_facts.outputs.version }}"
tag: "v${{ needs.gather_facts.outputs.version }}"

create-release-branch:
name: Create release branch
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.14.0
# devctl@6.17.1
#
name: Create Release PR
on:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.14.0
# devctl@6.17.1
#
name: Compare Helm Rendering

Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/zz_generated.documentation_validation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# DO NOT EDIT. Generated with:
#
# [email protected]
#

# This workflow validates the documentation generated from the JSON schema of the cluster-app
# which is located in `helm/*/values.schema.json`. Specifically, it checks whether the changes
# from `make generate-docs` were committed.

name: Documentation validation
on:
pull_request:
branches:
- master
- main
paths:
- 'helm/**/values.yaml'
- 'helm/**/values.schema.json'
- '**/*.md' # if someone manually edited a file that should contain the generated documentation

push: {}

jobs:
validate:
name: Validate documentation
runs-on: ubuntu-latest
env:
GO_VERSION: 1.21.3
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/[email protected]
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: "Run 'make generate-docs' and check for differences"
run: |
make generate-docs
if ! git diff --exit-code; then
echo "ERROR: You need to commit the changes made by \"make generate-docs\"."
exit 1
fi
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.14.0
# devctl@6.17.1
#
name: gitleaks

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zz_generated.json_schema_validation.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DO NOT EDIT. Generated with:
#
# devctl@6.14.0
# devctl@6.17.1
#

# This workflow validates the JSON schema of the cluster-app, which is located in
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.14.0
# devctl@6.17.1
#

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.14.0
# devctl@6.17.1
#

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

##@ Schema
Expand Down

0 comments on commit fb6519a

Please sign in to comment.