Skip to content

mr-ayy/skills-write-javascript-actions

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skills-write-javascript-actions

My Joke Action

My Joke Action, created as part of the Microsoft Create Custom GitHub Action Exercice. Original repository this was cloned from can be found on skills/write-javascript-action.

This action provides the following functionality for GitHub Actions users:

  • Provides a joke using the icanhazdadjoke API.
  • Prints and provides the joke as part of output.joke-output

Basic Usage

See action.yml.

steps:
  - id: joke
    name: My Joke Action
    uses: mr-ayy/skills-write-javascript-actions@v2

  - run: echo "${{ steps.joke.outputs.joke-output }}"