Skip to content

Commit

Permalink
Zumbified the base files
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbasso committed Feb 11, 2024
1 parent 3d17fe4 commit 412587d
Show file tree
Hide file tree
Showing 7 changed files with 25,563 additions and 1,203 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Repository CODEOWNERS

* @actions/actions-oss-maintainers
* @zumba/leads
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright GitHub
Copyright Zumba

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
41 changes: 29 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,40 @@
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: 'Regex Match Commenter Action'
description: 'Searches for regex patterns in PR diffs and comments on them'
author: 'Zumba'

# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'

# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
regex_patterns:
description: 'List of regex patterns to search for'
required: true
default: '1000'

# Define your outputs here.
outputs:
time:
description: 'Your output description here'
diff_scope:
description: 'Scope of the search (added, removed, both)'
required: false
default: 'both'

mark_changes_requested:
description: 'Mark PR as changes requested if matches are found'
required: false
default: 'false'

match_found_message:
description: 'Comment message for a regex match'
required: false
default: 'Regex match found.'

no_match_found_message:
description: 'Comment message when no regex matches are found'
required: false
default: 'No regex matches found in the diff.'

changes_requested_message:
description: 'Message for marking PR as changes requested'
required: false
default: 'Changes are requested due to regex match.'

runs:
using: node20
Expand Down
Loading

0 comments on commit 412587d

Please sign in to comment.