crystal_ball

Creator: coderz1093

Last updated:

0 purchases

crystal_ball Image
crystal_ball Images

Languages

Categories

Add to Cart

Description:

crystal ball

Crystal Ball #
Crystal ball is an easy app to check if github issue can be consider as invalid or dummy. It's also a GitHub action which simplify usage.
Problem to solve #
From time to time we are expecting issues which are not actionable.
Empty issue body is an example of unactionable issue.
Simillarly if issue template with checklist is given but no field is selected, it's possible to consider an issue as not ready to be triaged.
The Crystal Ball action will check issue description and respond to it base on predefined checks or customer provided regular expressions

Usage #
Action example #
name: crystall ball
on:
issues:
types: [opened, edited]
jobs:
fortune_teller:
runs-on: ubuntu-latest
name: Fortune teller
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Crystal Ball
# rm line below if you want to apply same rules for PR description
if: ${{ !github.event.issue.pull_request }}
uses: n0npax/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CRYSTAL_MATCH_REGEX_BAR: 'description:?\s*\Z'
CRYSTAL_NOMATCH_REGEX_FOO: '(\w+\s+){0,10}'
# COMMENT_MSG: blah blah blah
with:
repoName: ${{ github.repository }}
issueNum: ${{ github.event.issue.number }}
labels: "invalid,crystall ball needed"
copied to clipboard
ENV variables #
Default comment message cen be changed by:
COMMENT_MSG: "comment message (above failure reason)
copied to clipboard
Multiple regular expressions can be used to validate issue body. Any ENV variable starting with CRYSTAL_{NO,}MATCH_REGEX will be used. If match does/doesn't exists, issue is consider as invalid and crystal ball will comment.
CRYSTAL_NOMATCH_REGEX_FOO: '^foo$'
CRYSTAL_MATCH_REGEX_BAR: 'bar{4}'
copied to clipboard
Github token is required to perform actions.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
copied to clipboard

Example #
How action may look like:

Live demo #
Just raise an issue with empty body here.

LICENSE #
Code under MIT license.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.