Skip to content

Commit

Permalink
Create action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
heiskr committed Mar 4, 2022
1 parent 4f5926f commit b5d7f67
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Update step"
description: "Update the course repository when the learner completes a step."
inputs:
BRANCH_NAME:
description: "If the learner is working in a branch, add the branch name."
required: false
FROM_STEP:
description: "Requires the STEP file set to FROM_STEP."
required: true
GITHUB_REPOSITORY:
description: "Set to [env.GITHUB_REPOSITORY]."
required: true
GITHUB_TOKEN:
description: "Set to [env.GITHUB_TOKEN]."
required: true
TO_STEP:
description: "The step number to go to next."
required: true
runs:
using: composite
steps:
- run: update-step.sh
shell: bash

0 comments on commit b5d7f67

Please sign in to comment.