Skip to content

Releases: gimmyxd/rtc-action

0.3.1

08 Feb 15:19
Compare
Choose a tag to compare

Fix missing require to pathname

0.3.0

08 Feb 15:13
Compare
Choose a tag to compare

Skip RuboCop excluded files when checking for new offences

Release 0.3

08 Feb 15:11
Compare
Choose a tag to compare

Skip RuboCop excluded files when checking for new offences

0.2.1

15 Jun 09:36
Compare
Choose a tag to compare

Improved fixed offences message
Ignore new files on checks

0.2.0

11 Jun 14:06
Compare
Choose a tag to compare

Version 0.2.0 comes with a lot of improvements:

  • faster execution as only the modified files will be checked
  • make us of rubocop json output to create better reports
| Installing gems
| Success.
|
|
| Inspecting:
| - spec/facter/facter_spec.rb
|
| Generating diff
| Done.
|
|
|
| New offenses:
|   - spec/facter/facter_spec.rb:
|     - RSpec/MultipleExpectations: changed from 0 to 1

Comment only if UPDATE_PR is true

05 Apr 12:03
e6abfe6
Compare
Choose a tag to compare

[0.1.0] Added ability to comment on PR

04 Apr 16:51
Compare
Choose a tag to compare

This release add the ability to enable PR comments with the output result of the check.

Parsing speed improvements

27 Feb 22:42
Compare
Choose a tag to compare
0.0.5

speed up parsing by using --exclude-limit 0

This is the first good enough to use version

27 Feb 22:39
Compare
Choose a tag to compare

Concepts

This action will use the .rubocop_todo.yml from your project and will determine if new offenses were added in the current commit.

How it works:

  • parse rubocop_todo.yml and extract number of offenses for each Cop.
  • execute rubocop --auto-gen-config to generate the new config.
  • parse again rubocop_todo.yml and extract number of offenses for each Cop.
  • make a diff between old offenses and new offenses.
  • if new offenses > old offenses it will print how many offenses were added and to which Cops.
  • prints a summary.

Fix RuboCop loading

27 Feb 21:17
Compare
Choose a tag to compare
Pre-release
0.0.3.pre

fix RubocopLoader call