Compare commits
27 commits
Author | SHA1 | Date | |
---|---|---|---|
|
59ff61bcf1 | ||
|
fd4efce251 | ||
92351bfec8 | |||
|
6110d36adc | ||
|
31c5dac6cb | ||
|
e06ae70b20 | ||
|
69b8f008a9 | ||
|
30d4e3a037 | ||
|
b25849c0bf | ||
|
6d19281100 | ||
|
e4d0da778b | ||
|
1133be9a5a | ||
|
f6dc9a004a | ||
|
8bbc1f7e1d | ||
|
8e403c87bd | ||
c0b2ff6074 | |||
884d8d504c | |||
1ad7f8bf03 | |||
|
9d76b9268d | ||
7d84eaa186 | |||
fe468ffde0 | |||
ec206cb527 | |||
4867f64768 | |||
4d642d07d2 | |||
9001aa5369 | |||
25f2967493 | |||
5a7c5e49fe |
4 changed files with 21 additions and 8 deletions
6
.github/workflows/aur-release.yml
vendored
6
.github/workflows/aur-release.yml
vendored
|
@ -9,15 +9,15 @@ jobs:
|
|||
aur-publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Publish AUR package
|
||||
uses: anas-elgarhy/aur-release-action@v3.4
|
||||
uses: anas-elgarhy/aur-release-action@v4.1
|
||||
with:
|
||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory
|
||||
aur_submodule_path: archpackage/aarty
|
||||
# aur_submodule_path: archpackage/aarty
|
||||
git_username: Anas Elgarhy # Use this if you want to change the git username (recommended)
|
||||
git_email: anas.elgarhy.dev@gmail.com # Use this if you want to change the git email (recommended)
|
||||
commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message
|
||||
|
|
7
.mergify.yml
Normal file
7
.mergify.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
pull_request_rules:
|
||||
- name: Automatic merge on approval
|
||||
conditions:
|
||||
- "#approved-reviews-by>=1"
|
||||
actions:
|
||||
merge:
|
||||
method: merge
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "aarty"
|
||||
version = "0.3.9"
|
||||
version = "0.4.8"
|
||||
edition = "2021"
|
||||
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
||||
description = "A simple CLI tool to convert the images to ASCII art"
|
||||
|
@ -31,8 +31,8 @@ exclude = ["images/*"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.0.12-rc.3", features = ["derive"] }
|
||||
clap = { version = "4.3.2", features = ["derive"] }
|
||||
colored = "2.0.0"
|
||||
image = "0.24.4"
|
||||
log = "0.4.17"
|
||||
pretty_env_logger = "0.4.0"
|
||||
image = "0.24.6"
|
||||
log = "0.4.18"
|
||||
pretty_env_logger = "0.5.0"
|
||||
|
|
6
renovate.json
Normal file
6
renovate.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue