Skip to content

Commit 6583ad7

Browse files
dblockclaude
andcommitted
Migrate Danger to use danger-pr-comment workflow.
- Add danger, danger-pr-comment, danger-changelog, and danger-toc to Gemfile - Update Dangerfile to import danger-pr-comment gem - Add changelog.check! and toc.check! to Dangerfile - Follows pattern from slack-ruby/slack-ruby-client#581 and slack-ruby/slack-ruby-bot-server#181 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 7baad46 commit 6583ad7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Your contribution here.
1010
* [#87](https://github.com/ruby-grape/grape-swagger-entity/pull/87): Remove hidden attributes from required - [@bogdan](https://github.com/bogdan).
1111
* [#88](https://github.com/ruby-grape/grape-swagger-entity/pull/88): Update danger workflows - [@numbata](https://github.com/numbata).
12+
* [#89](https://github.com/ruby-grape/grape-swagger-entity/pull/89): Remove ruby-grape-danger - [@dblock](https://github.com/dblock).
1213

1314
### 0.7.0 (2025/08/02)
1415

Dangerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# frozen_string_literal: true
22

3-
danger.import_dangerfile(gem: 'ruby-grape-danger')
3+
danger.import_dangerfile(gem: 'danger-pr-comment')
4+
5+
changelog.check!
6+
toc.check!

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ group :development do
4343
end
4444

4545
group :test do
46+
gem 'danger', require: false
47+
gem 'danger-changelog', require: false
48+
gem 'danger-pr-comment', require: false
49+
gem 'danger-toc', require: false
4650
gem 'grape-entity', grape_entity_spec
47-
gem 'ruby-grape-danger', '~> 0.3.0', require: false
4851
gem 'simplecov', require: false
4952
end

0 commit comments

Comments
 (0)