Skip to content

Commit 4d1f896

Browse files
author
Colin Wahl
committed
fix GitHub.Actions.Core.endGroup
1 parent 48f97e6 commit 4d1f896

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/01-What-Is-An-Action.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ Specifically, an Action is an `action.yml` file paired with a Node script (found
66

77
### What is GitHub's Actions Toolkit?
88

9-
[GitHub's Actions Toolkit](https://github.com/actions/toolkit) is a set of Node modules which provide useful tools for creating Actions. For example:
10-
11-
`GitHub.Actions.Core` provides bindings to the [core](https://github.com/actions/toolkit/tree/main/packages/core) package, which allows you to
9+
[GitHub's Actions Toolkit](https://github.com/actions/toolkit) is a set of Node modules which provide useful tools for creating Actions. This library provides bindings to the packages within the toolkit in order to define GitHub Actions in PureScript.

src/GitHub/Actions/Core.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ foreign import endGroupImpl :: Effect Unit
146146

147147
-- | End an output group.
148148
endGroup :: Effect Unit
149-
endGroup = runEffectFn1 endGroupImpl
149+
endGroup = endGroupImpl
150150

151151
foreign import saveStateImpl :: EffectFn2 String String Unit
152152

0 commit comments

Comments
 (0)