Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix workflows after repository consolidation #398

Merged
merged 5 commits into from
Dec 5, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/cargo-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: ./.github/actions/find-changed-directories
with:
contains_the_file: Cargo.toml
changed_relative_to_branch: ${{ github.base_ref || 'not-a-branch' }}
changed_relative_to_ref: origin/${{ github.base_ref || 'not-a-branch' }}
ignore_dirs: ".coredb examples"

lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cargo_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo "fail_if_version_published=false" >> $GITHUB_OUTPUT
else
echo "dry_run=true" >> $GITHUB_OUTPUT
echo "fail_if_version_published=true" >> $GITHUB_OUTPUT
echo "fail_if_version_published=false" >> $GITHUB_OUTPUT
fi
- uses: Swatinem/rust-cache@v2
with:
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,13 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Check out the coredb repo to reuse some actions
uses: actions/checkout@v3
with:
repository: coredb-io/coredb
path: ./.coredb
ref: 84664df742ce9774a3029e08111940f9f1fb345e
- name: Find directories with Dockerfiles that changed
id: find_directories
uses: ./.coredb/.github/actions/find-changed-directories
uses: ./.github/actions/find-changed-directories
with:
contains_the_file: Chart.yaml
changed_relative_to_branch: ${{ github.base_ref || 'not-a-branch' }}
ignore_dirs: ".coredb"
changed_relative_to_ref: origin/${{ github.base_ref || 'not-a-branch' }}
ignore_dirs: "examples"

lint:
name: Build and push images
Expand Down
1 change: 0 additions & 1 deletion charts/tembo-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ podMonitor:

env: []

## Configure resource requests and limits
resources:
limits:
cpu: 1000m
Expand Down
1 change: 0 additions & 1 deletion tembo-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Tembo Operator


## Requirements

- A Kubernetes cluster: [kind](https://github.com/kubernetes-sigs/kind)
Expand Down
Loading