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 }}
Eomm / hacktoberfestify
Manage your Hacktoberfest issues!
hacktoberfestify
Manage your Hacktoberfest issues!
Run this CLI from your repository working directory to add the label to any issues!
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
...
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β¦
Top comments (0)