-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test PR to verify Danger message #835
base: trunk
Are you sure you want to change the base?
Changes from all commits
38346ee
4da6af7
85de349
62dc653
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: ☢️ Danger | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, ready_for_review, synchronize] | ||
|
||
jobs: | ||
dangermattic: | ||
# runs on draft PRs only for opened / synchronize events | ||
uses: Automattic/dangermattic/.github/workflows/[email protected] | ||
secrets: | ||
github-token: ${{ secrets.DANGERMATTIC_GITHUB_TOKEN }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
github.dismiss_out_of_range_messages | ||
|
||
# `files: []` forces rubocop to scan all files, not just the ones modified in the PR | ||
rubocop.lint(files: [], force_exclusion: true, inline_comment: true, fail_on_inline_comment: true, include_cop_names: true) | ||
|
||
manifest_pr_checker.check_all_manifest_lock_updated | ||
|
||
podfile_checker.check_podfile_does_not_have_branch_references | ||
|
||
pr_size_checker.check_diff_size( | ||
max_size: 300, | ||
type: :insertions | ||
) |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,9 +1,16 @@ | ||||
# frozen_string_literal: true | ||||
|
||||
|
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
source 'https://rubygems.org' | ||||
|
||||
gem 'cocoapods', '~> 1.11' | ||||
gem 'cocoapods-check', '~> 1.1' | ||||
gem 'danger-dangermattic', '~> 1.0' | ||||
gem 'fastlane', '~> 2.189' | ||||
gem 'fastlane-plugin-wpmreleasetoolkit', '~> 9.2' | ||||
gem 'rubocop', '~> 1.18' | ||||
# out of order to get a RuboCop warning | ||||
gem 'cocoapods', '~> 1.11' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.