DEV Community

Manuel Spigolon
Manuel Spigolon

Posted on

hacktoberfestify

My Workflow

hacktoberfestify is a CLI and a GitHub action built to support the hacktoberfest 2020 initiative and the #preptember tag!
It will add the hacktoberfest (customizable) label to new issues or reopened ones.

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

name: hacktoberfestify

on:
  issues:
    types: [opened, reopened]

jobs:
  hacktoberfestify:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: Eomm/hacktoberfestify@action-v1
        with:
          issue: ${{ github.event.issue.number }}
        env:
          GITHUB_TOKEN: ${{ secrets.github_token }}
Enter fullscreen mode Exit fullscreen mode

GitHub logo Eomm / hacktoberfestify

Manage your Hacktoberfest issues!

hacktoberfestify

Manage your Hacktoberfest issues!

Run this CLI from your repository working directory to add the hacktoberfest label to any issues!

Build Status oclif Version Downloads/week License

Usage

$ npm install -g hacktoberfestify
$ hacktoberfestify COMMAND
running command...
$ hacktoberfestify (-v|--version|version)
hacktoberfestify/1.0.1 win32-x64 node-v12.2.0
$ hacktoberfestify --help [COMMAND]
USAGE
  $ hacktoberfestify COMMAND
...
Enter fullscreen mode Exit fullscreen mode

Commands

hacktoberfestify add

Add the hacktoberfest label to any issues from your console!

USAGE
  $ hacktoberfestify add

OPTIONS
  -i, --issue=issue                    [default: ] issue to label

  -k, --envGithubToken=envGithubToken  [default: GITHUB_TOKEN] The ENV key where the GITHUB_TOKEN is stored or the token
                                       itself

  -r, --range=range                    [default: ] an issues' ids range inclusuve (39-100)

See code: src\commands\add.js

hacktoberfestify help [COMMAND]

display help for hacktoberfestify

USAGE
  $ hacktoberfestify help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

Action

You may use this CLI as a GitHub…

Additional Resources / Info

Action usage
GitHub Repo
Action Marketplace

Top comments (0)