Skip to content

Commit

Permalink
rename gitbutler-diff to gitbutler-changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Feb 29, 2024
1 parent e66b19f commit c9b185f
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
gitbutler-app: ${{ steps.filter.outputs.gitbutler-app }}
gitbutler-core: ${{ steps.filter.outputs.gitbutler-core }}
gitbutler-git: ${{ steps.filter.outputs.gitbutler-git }}
gitbutler-diff: ${{ steps.filter.outputs.gitbutler-diff }}
gitbutler-changeset: ${{ steps.filter.outputs.gitbutler-changeset }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
Expand All @@ -41,9 +41,9 @@ jobs:
gitbutler-git:
- *rust
- 'gitbutler-git/**'
gitbutler-diff:
gitbutler-changeset:
- *rust
- 'gitbutler-diff/**'
- 'gitbutler-changeset/**'
lint-node:
needs: changes
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: ./.github/actions/init-env-rust
# TODO(qix-): we have to exclude the app here for now because for some
# TODO(qix-): reason it doesn't build with the docs feature enabled.
- run: cargo doc --no-deps --all-features --document-private-items -p gitbutler-core -p gitbutler-git -p gitbutler-diff
- run: cargo doc --no-deps --all-features --document-private-items -p gitbutler-core -p gitbutler-git -p gitbutler-changeset
env:
RUSTDOCFLAGS: -Dwarnings

Expand Down Expand Up @@ -151,9 +151,9 @@ jobs:
features: ${{ toJson(matrix.features) }}
action: ${{ matrix.action }}

check-gitbutler-diff:
check-gitbutler-changeset:
needs: [changes, rust-init]
if: ${{ needs.changes.outputs.gitbutler-diff == 'true' }}
if: ${{ needs.changes.outputs.gitbutler-changeset == 'true' }}
runs-on: ubuntu-latest
container:
image: ghcr.io/gitbutlerapp/ci-base-image:latest
Expand All @@ -173,7 +173,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/check-crate
with:
crate: gitbutler-diff
crate: gitbutler-changeset
features: ${{ toJson(matrix.features) }}
action: ${{ matrix.action }}

Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
- changes
- check-gitbutler-app
- check-gitbutler-git
- check-gitbutler-diff
- check-gitbutler-changeset
- check-gitbutler-core
runs-on: ubuntu-latest
if: ${{ needs.changes.outputs.rust == 'true' }}
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [
"gitbutler-app",
"gitbutler-core",
"gitbutler-diff",
"gitbutler-changeset",
"gitbutler-git",
]
resolver = "2"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gitbutler-diff"
name = "gitbutler-changeset"
version = "0.0.0"
edition = "2021"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c9b185f

Please sign in to comment.