Skip to content

Commit

Permalink
chore(ci): Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeluk committed Dec 4, 2024
1 parent 501c3cf commit fae0068
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on: [push]
jobs:
check-commits:
runs-on: ubuntu-latest
name: check conventional commit compliance
name: "check conventional commit compliance"
steps:
- uses: actions/checkout@main
with:
fetch-depth: 0
- name: Conventional commits check
- name: "Conventional commits check"
uses: cocogitto/cocogitto-action@v3
6 changes: 3 additions & 3 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Perform release
- name: "Perform release"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cocogitto release
- name: "Cocogitto release"
id: release
uses: cocogitto/cocogitto-action@v3
with:
release: true
git-user: 'Release Bot'
git-user-email: '[email protected]'
- name: Generate Changelog
- name: "Generate Changelog"
run: cog changelog --at ${{ steps.release.outputs.version }} -t full_hash > GITHUB_CHANGELOG.md
- name: Upload github release
uses: softprops/action-gh-release@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ permissions:
checks: write
jobs:
rust-ci:
name: Format, Lint, Test, and Build
name: "Format, Lint, Test, and Build"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: '${{ matrix.os }}'
steps:
- name: Checkout repository
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
- name: Setup
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Format
uses: actions-rust-lang/rustfmt@v1
Expand Down

0 comments on commit fae0068

Please sign in to comment.