Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanmacfarlane committed Oct 3, 2019
1 parent b215122 commit 7b46e3a
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions README.md
Expand Up @@ -77,7 +77,7 @@ Actions are downloaded and run from the GitHub graph of repos. This contains gu
<br/>
<br/>

[Hello World JavaScript Action](https://github.com/actions/hello-world-javascript-action)
<h3><a href="https://github.com/actions/hello-world-javascript-action">Hello World JavaScript Action</a></h3>

Illustrates how to create a simple hello world javascript action.

Expand All @@ -88,11 +88,10 @@ Illustrates how to create a simple hello world javascript action.
...
```
<br/>
<br/>

[JavaScript Action Walkthrough](https://github.com/actions/javascript-action)
<h3><a href="https://github.com/actions/javascript-action">JavaScript Action Walkthrough</a></h3>

Walkthrough and template for creating a JavaScript Action with tests, linting, workflow, publishing, and versioning.
Walkthrough and template for creating a JavaScript Action with tests, linting, workflow, publishing, and versioning.

```javascript
async function run() {
Expand All @@ -111,9 +110,8 @@ Test Suites: 1 passed, 1 total
Tests: 3 passed, 3 total
```
<br/>
<br/>
[TypeScript Action Walkthrough](https://github.com/actions/typescript-action)
<h3><a href="https://github.com/actions/typescript-action">TypeScript Action Walkthrough</a></h3>
Walkthrough creating a TypeScript Action with compilation, tests, linting, workflow, publishing, and versioning.
Expand All @@ -138,7 +136,7 @@ Tests: 3 passed, 3 total
<br/>
<br/>

This comment has been minimized.

Copy link
@fox1211

fox1211 Feb 17, 2020


[Docker Action Walkthrough](docs/container-action.md)
<h3><a href="docs/container-action.md">Docker Action Walkthrough</a></h3>
Create an action that is delivered as a container and run with docker.
Expand All @@ -149,9 +147,8 @@ COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

This comment has been minimized.

Copy link
@fox1211

fox1211 Feb 17, 2020

1

```
<br/>
<br/>
[Docker Action Walkthrough with Octokit](https://github.com/actions/container-toolkit-action)
<h3><a href="https://github.com/actions/container-toolkit-action">Docker Action Walkthrough with Octokit</a></h3>
Create an action that is delivered as a container which uses the toolkit. This example uses the GitHub context to construct an Octokit client.
Expand All @@ -169,7 +166,6 @@ const context = github.context;
console.log(`We can even get context data, like the repo: ${context.repo.repo}`)
```
<br/>
<br/>
Recommendations on versioning, releases and tagging your action.
<br/>
Expand Down

1 comment on commit 7b46e3a

@fox1211
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Please sign in to comment.