Skip to content

sneha-natekar/action-to-marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

action-to-marketplace

GitHub Action to Create Releases Based on a Keyword

Testing

The Keyword Releaser will create a release based on the keyword specified in the arguments.

Environment Variables

  • GITHUB_TOKEN - Required Allows the Action to authenticte with the GitHub API to create the release.

Arguments

  • Required - A single keyword. If the keyword is found in a commit message, a release will be created. Although case is ignored, it's suggested to use a unique, uppercase string like FIXED, READY_TO_RELEASE, or maybe even PINEAPPLE.

Examples

Here's an example workflow that uses the Keyword Releaser action. The workflow is triggered by a PUSH event and looks for the keyword "FIXED".

name: keyword-releaser

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: automate6500/keyword-release-action@master
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        args: 'FIXED'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published