8 Commits

Author SHA1 Message Date
a34118b5e8 chore(release): v0.1.3 (#83)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.1.3

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/gitignore/pulls/83
2024-12-22 11:44:28 +01:00
6e4fa67778 chore: update cargo
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-22 11:43:37 +01:00
0a8d1105e5 chore(release): v0.1.2 (#82)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.1.2

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/gitignore/pulls/82
2024-12-22 11:42:52 +01:00
e370e4d282 feat: trigger commit
All checks were successful
continuous-integration/drone/push Build is passing
2024-12-22 11:42:12 +01:00
aeab954230 chore(release): v0.1.1
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2024-12-22 11:42:04 +01:00
253b4d5c38 feat: trigger commit
All checks were successful
continuous-integration/drone/push Build is passing
2024-12-22 11:41:55 +01:00
532506ca0a chore(release): v0.1.2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2024-12-22 11:40:57 +01:00
cd5b8645ff fix: ignore cuddle
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-22 11:40:31 +01:00
6 changed files with 8 additions and 388 deletions

Submodule .cuddle/base deleted from 25407e4b84

View File

@@ -1,137 +0,0 @@
kind: pipeline
name: cuddle-rust-cli-plan
type: docker
steps:
- name: load_secret
image: debian:buster-slim
volumes:
- name: ssh
path: /root/.ssh/
environment:
SSH_KEY:
from_secret: gitea_id_ed25519
commands:
- mkdir -p $HOME/.ssh/
- echo "$SSH_KEY" | base64 -d > $HOME/.ssh/id_ed25519
- chmod -R 600 ~/.ssh
- |
cat >$HOME/.ssh/config <<EOL
Host git.front.kjuulh.io
IdentityFile $HOME/.ssh/id_ed25519
IdentitiesOnly yes
UserKnownHostsFile=/dev/null
StrictHostKeyChecking no
EOL
- chmod 700 ~/.ssh/config
- name: build pr
image: kasperhermansen/{{bin_name}}:{{image_tag}}
volumes:
- name: ssh
path: /root/.ssh/
commands:
- eval `ssh-agent`
- ssh-add
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
- export CLUSTER=clank-dev
- cuddle --version
- {{ bin_name }} pr
environment:
DAGGER_CLOUD_TOKEN:
from_secret: dagger_cloud_token
DRONE_HOST: "https://ci.i.kjuulh.io"
DRONE_USER: "kjuulh"
DRONE_TOKEN:
from_secret: drone_token
REGISTRY_CACHE_USERNAME:
from_secret: registry_cache_username
REGISTRY_CACHE_PASSWORD:
from_secret: registry_cache_password
REGISTRY_CACHE_TOKEN:
from_secret: registry_cache_token
REGISTRY_CACHE_url:
from_secret: registry_cache_url
DOCKER_BUILDKIT: 1
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
CUDDLE_SECRETS_PROVIDER: 1password
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
CUDDLE_SSH_AGENT: "true"
GIT_PASSWORD:
from_secret: git_password
CI_PREFIX: "/mnt/ci/ci"
DOCKER_HOST: "tcp://192.168.1.155:2376"
CUDDLE_PLEASE_TOKEN:
from_secret: cuddle_please_token
OP_SERVICE_ACCOUNT_TOKEN:
from_secret: op_service_account_token
when:
event:
- pull_request
exclude:
- main
- master
depends_on:
- "load_secret"
- name: build main
image: kasperhermansen/{{bin_name}}:{{image_tag}}
volumes:
- name: ssh
path: /root/.ssh/
commands:
- eval `ssh-agent`
- ssh-add
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
- export CLUSTER=clank-prod
- cuddle --version
- {{ bin_name }} main
environment:
DAGGER_CLOUD_TOKEN:
from_secret: dagger_cloud_token
DRONE_HOST: "https://ci.i.kjuulh.io"
DRONE_USER: "kjuulh"
DRONE_TOKEN:
from_secret: drone_token
REGISTRY_CACHE_USERNAME:
from_secret: registry_cache_username
REGISTRY_CACHE_PASSWORD:
from_secret: registry_cache_password
REGISTRY_CACHE_TOKEN:
from_secret: registry_cache_token
REGISTRY_CACHE_url:
from_secret: registry_cache_url
DOCKER_BUILDKIT: 1
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
CUDDLE_SECRETS_PROVIDER: 1password
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
CUDDLE_SSH_AGENT: "true"
GIT_PASSWORD:
from_secret: git_password
CI_PREFIX: "/mnt/ci/ci"
DOCKER_HOST: "tcp://192.168.1.155:2376"
CUDDLE_PLEASE_TOKEN:
from_secret: cuddle_please_token
OP_SERVICE_ACCOUNT_TOKEN:
from_secret: op_service_account_token
when:
event:
- push
branch:
- main
- master
exclude:
- pull_request
depends_on:
- "load_secret"
volumes:
- name: ssh
temp: {}

1
.gitignore vendored
View File

@@ -1 +1,2 @@
target/ target/
.cuddle/

View File

@@ -6,255 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.1.0] - 2024-12-22 ## [0.1.3] - 2024-12-22
### Added
- use kignore
- add force and cuddle
- add force
### Fixed
- fix space
### Other ### Other
- Update Rust crate console to v0.15.10 - update cargo
- Update Rust crate clap to v4.5.23 ## [0.1.2] - 2024-12-22
- Update Rust crate clap to v4.5.22
- Update Rust crate tracing-subscriber to v0.3.19
- Update Rust crate tracing to v0.1.41
- Update Rust crate clap to v4.5.21
- Update Rust crate clap to v4.5.20
- Update Rust crate clap to v4.5.19
- Update Rust crate clap to v4.5.16
- Update Rust crate clap to 4.5.4
- Update Rust crate clap to 4.5.3
- Update Rust crate clap to 4.5.2
- Update Rust crate eyre to 0.6.12
- Update Rust crate clap to 4.4.18
- Update Rust crate clap to 4.4.17
- Update Rust crate clap to 4.4.16
- Update Rust crate clap to 4.4.15
- Update Rust crate console to 0.15.8
- Update Rust crate clap to 4.4.14
- Update Rust crate clap to 4.4.13
- Update Rust crate clap to 4.4.12
- Update Rust crate eyre to 0.6.11
- Update Rust crate eyre to 0.6.10
- Update Rust crate clap to 4.4.11
- Update Rust crate clap to 4.4.10
- Update Rust crate clap to 4.4.9
- Update Rust crate eyre to 0.6.9
- Update Rust crate tracing-subscriber to 0.3.18
- Update Rust crate clap to 4.4.8
- Update Rust crate clap to 4.4.7
- Update Rust crate tracing to 0.1.40
- Update all dependencies
- Update Rust crate clap to 4.4.5
- Update Rust crate clap to 4.4.4
- Update Rust crate clap to 4.4.3
- Update Rust crate clap to 4.4.2
- Update Rust crate clap to 4.4.1
- Update Rust crate clap to 4.4.0
- Update Rust crate clap to 4.3.24
- Update Rust crate clap to 4.3.23
- Update Rust crate clap to 4.3.22
- Update Rust crate clap to 4.3.21
- Merge pull request 'Update Rust crate clap to 4.3.10' (#39) from renovate/all into main
- Merge pull request 'Update Rust crate clap to 4.3.9' (#38) from renovate/all into main
- Merge pull request 'Update Rust crate clap to 4.3.8' (#37) from renovate/all into main
- Merge pull request 'Update Rust crate clap to 4.3.6' (#36) from renovate/all into main
- Merge pull request 'Update all dependencies' (#35) from renovate/all into main
- Update Rust crate clap to 4.3.0
- Update Rust crate console to 0.15.6
- Update Rust crate clap to 4.2.7
- Update Rust crate tracing-subscriber to 0.3.17
- Update Rust crate clap to 4.2.4
- Update Rust crate clap to 4.2.3
- Update Rust crate clap to 4.2.2
- Update Rust crate clap to 4.2.1
- Update Rust crate clap to 4.2.0
- Update Rust crate clap to 4.1.14
- Update Rust crate clap to 4.1.13
- Update Rust crate clap to 4.1.12
- Update Rust crate clap to 4.1.11
- Update Rust crate clap to 4.1.10
- Update Rust crate clap to 4.1.9
- Update Rust crate clap to 4.1.8
- Update Rust crate clap to 4.1.6
- Update all dependencies
- Update Rust crate console to 0.15.4
- Update Rust crate console to 0.15.3
- Update Rust crate clap to 4.0.32
- Update Rust crate clap to 4.0.31
- Update Rust crate clap to 4.0.30
- Update Rust crate clap to 4.0.27
- Update Rust crate clap to 4.0.26
- Update Rust crate clap to 4.0.23
- Update Rust crate clap to 4.0.22
- Update Rust crate clap to 4.0.21
- Update Rust crate clap to 4.0.20
- Update Rust crate clap to 4.0.19
- Update Rust crate clap to 4.0.18
- Add .drone.yml
- Add .drone.yml
- Merge pull request 'Configure Renovate' (#2) from renovate/configure into main
Reviewed-on: https://git.front.kjuulh.io/kjuulh/gitignore/pulls/2
- Add renovate.json
- trying without alias
- trying again
- updated formula
- add completion script to homebrew
- install via. homebrew
- cask works
- updated name
- with sha
- trying again
- without man pages
- with license
- Added homebrew
- With executable rights
- ...
- Add testing branch
- added releaser
- added brew formula
- add post install
- bump version
- updated readme
- with updated name
- with actual category
- move readme
- add inner package
- Fixed publish
- add install instructions
- Add readme
- Added scripts for installing command
- it wooorks
- Add git rm cached
- .gitignore
- Added base setting
- added base settings for adding items to ignore
- Add base commit
### Removed
- removed win
- removed duplicates
### Added
- trigger commit

2
Cargo.lock generated
View File

@@ -141,7 +141,7 @@ dependencies = [
[[package]] [[package]]
name = "gitignore_inner" name = "gitignore_inner"
version = "0.1.0" version = "0.1.2"
dependencies = [ dependencies = [
"clap", "clap",
"console", "console",

View File

@@ -2,7 +2,7 @@
members = ["crates/gitignore_inner", "."] members = ["crates/gitignore_inner", "."]
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.1.3"
[package] [package]
name = "kignore" name = "kignore"