Skip to content

Commit

Permalink
chore: path bump for ci improvements (#5)
Browse files Browse the repository at this point in the history
Signed-off-by: gacallea <3269984+gacallea@users.noreply.github.com>
  • Loading branch information
andreacfromtheapp authored Aug 7, 2024
2 parents f3dd43e + 1be859a commit 9181092
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ updates:
# Maintain dependencies for Cargo
- package-ecosystem: cargo
directory: "/"
# Check for updates every Monday
schedule:
interval: daily
interval: "weekly"
open-pull-requests-limit: 10
versioning-strategy: "lockfile-only"

# Maintain dependencies for GitHub Actions
- package-ecosystem: github-actions
- package-ecosystem: "github-actions"
directory: "/"
# Check for updates every Monday
schedule:
interval: daily
interval: "weekly"
open-pull-requests-limit: 10
21 changes: 21 additions & 0 deletions .github/workflows/cargo-assist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Cargo Assist

permissions:
contents: write

on:
push:

jobs:
cargo-assist:
name: Cargo Assist
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run Cargo Assist
uses: MarcoIeni/cargo-assist@v0.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "freesound-credits"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
A command line utility to help you credit [Freesound](https://freesound.org)
samples for a given project more easily.

[![Cargo
Assist](https://github.com/gacallea/freesound-credits/actions/workflows/cargo-assist.yml/badge.svg)](https://github.com/gacallea/freesound-credits/actions/workflows/cargo-assist.yml)
[![Cargo
Audit](https://github.com/gacallea/freesound-credits/actions/workflows/cargo_audit.yml/badge.svg)](https://github.com/gacallea/freesound-credits/actions/workflows/cargo_audit.yml)
[![Release](https://github.com/gacallea/freesound-credits/actions/workflows/release.yml/badge.svg)](https://github.com/gacallea/freesound-credits/actions/workflows/release.yml)
Expand Down
7 changes: 4 additions & 3 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
# See documentation for more information on available options.

[changelog]
# template for the changelog header
# changelog header
header = """
[![animation](https://raw.githubusercontent.com/orhun/git-cliff/main/website/static/img/git-cliff-anim.gif)](https://git-cliff.org)\n
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
Expand Down Expand Up @@ -58,7 +59,7 @@ footer = """
trim = true
# postprocessors
postprocessors = [
{ pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
{ pattern = '<REPO>', replace = "https://github.com/gacallea/freesound-credits" }, # replace repository URL
]

[git]
Expand Down

0 comments on commit 9181092

Please sign in to comment.