Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/comprehensive-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generate release notes using a standard format

changelog:
categories:
- title: Highlighted Changes
labels:
- highlight
- title: Breaking Changes
labels:
- breaking-change
- title: Security Fixes
labels:
- security-fix
- title: Misc. Fixes and Improvements
labels:
- "*"
13 changes: 13 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Generate release notes using a standard format

changelog:
categories:
- title: Highlighted Changes
labels:
- highlight
- title: Breaking Changes
labels:
- breaking-change
- title: Security Fixes
labels:
- security-fix
19 changes: 19 additions & 0 deletions .github/workflows/label-checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- labeled
- unlabeled

jobs:

check_labels:
name: Check for labels
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
one_of: highlight,breaking-change,security-fix,enhancement,bug
repo_token: ${{ secrets.GITHUB_TOKEN }}
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust Linters

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

jobs:
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all --check
Loading