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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/rubykatzen/baseline
rev: v0.16.1 # x-release-please-version
rev: v0.16.2 # x-release-please-version
hooks:
- id: yamllint
- id: pymarkdown
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.16.1"
".": "0.16.2"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.16.2](https://github.com/rubykatzen/baseline/compare/v0.16.1...v0.16.2) (2026-08-25)


### Bug Fixes

* grant label check permission ([#176](https://github.com/rubykatzen/baseline/issues/176)) ([588a81f](https://github.com/rubykatzen/baseline/commit/588a81fd9c749ec0682cd57c43187cff81fd22fb))
* separate PR digest titles ([#170](https://github.com/rubykatzen/baseline/issues/170)) ([29fe4bb](https://github.com/rubykatzen/baseline/commit/29fe4bb5a851bf972396afc8cb1bd30e352c3eae))

## [0.16.1](https://github.com/rubykatzen/baseline/compare/v0.16.0...v0.16.1) (2026-08-24)


Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rubykatzen-baseline (0.16.1)
rubykatzen-baseline (0.16.2)
erb_lint (~> 0.9)
herb (~> 0.10)
rubocop (~> 1.88)
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
pull_request:
jobs:
lint:
uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.2
```

<!-- x-release-please-end -->
Expand All @@ -53,7 +53,7 @@ on:
pull_request:
jobs:
github:
uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/github-shared.yml@v0.16.2
```

<!-- x-release-please-end -->
Expand All @@ -77,7 +77,7 @@ on:
pull_request:
jobs:
embedder:
uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.2
```

<!-- x-release-please-end -->
Expand All @@ -94,7 +94,7 @@ Repositories using an optional shared policy can add its Embedder configuration:
```yaml
jobs:
embedder:
uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/embedder-shared.yml@v0.16.2
with:
extra: '["release-please"]'
```
Expand All @@ -121,7 +121,7 @@ on:
workflow_dispatch:
jobs:
notify:
uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/notify-telegram-pr-shared.yml@v0.16.2
secrets:
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
Expand Down Expand Up @@ -151,7 +151,7 @@ on:
types: [published]
jobs:
notify:
uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/notify-telegram-release-shared.yml@v0.16.2
secrets:
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
Expand All @@ -178,7 +178,7 @@ on:
jobs:
notify:
if: contains(github.event.issue.labels.*.name, 'notify')
uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/notify-telegram-issue-shared.yml@v0.16.2
secrets:
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_ISSUE_CHAT_ID }}
Expand All @@ -200,7 +200,7 @@ a JSON array through `skip`:
```yaml
jobs:
lint:
uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.1
uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.16.2
with:
skip: '["rubocop", "herb"]'
```
Expand Down Expand Up @@ -242,7 +242,7 @@ CI runtime installation is automatic. For local pre-commit use, create
```yaml
repos:
- repo: https://github.com/rubykatzen/baseline
rev: v0.16.1
rev: v0.16.2
hooks:
- id: yamllint
- id: pymarkdown
Expand Down
2 changes: 1 addition & 1 deletion lib/baseline/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Baseline
VERSION = "0.16.1"
VERSION = "0.16.2"
end