Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lnxpy committed Apr 13, 2024
1 parent e35dbe8 commit 1d4e024
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions docs/css/navbar.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap');

.md-header {
background-color: #0E1016;
Expand Down Expand Up @@ -55,6 +56,9 @@
margin-top: 13px;
font-style: italic;
color: #b45dfa;
font-family: "Oooh Baby", cursive;
font-size: 22px;
font-weight: 700;
}

.md-main blockquote mark::before {
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ title: Introduction

![version)](https://img.shields.io/github/v/tag/lnxpy/pyaction?label=Version&color=4E2DB7) [![Package Testing](https://github.com/lnxpy/pyaction/actions/workflows/testing.yml/badge.svg)](https://github.com/lnxpy/pyaction/actions/workflows/testing.yml) [![docs ci](https://github.com/lnxpy/pyaction/actions/workflows/docs.yml/badge.svg?branch=main)](https://github.com/lnxpy/pyaction/actions/workflows/docs.yml)

PyAction helps you to create develop custom GitHub Actions using Python.
PyAction helps you to create and develop custom GitHub Actions using Python.

> Actions are individual tasks that you can combine to create jobs and customize your workflow. You can create your own actions, or use and customize actions shared by the GitHub community. ==GitHub Inc.==
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Hello-world Action Demo
In this demo tutorial, we'll get our hands on a simple hello-world action.

## Initialization
Let's generate our action and name it something unique so that we can [publish it to the marketplace](tutorial.md#publishing).
Let's generate our action and name it something unique so that we can [publish it to the marketplace](tutorial.md#publishing-in-the-marketplace).

To begin with, once you've installed `pyaction`, generate a base template for the action.

Expand Down Expand Up @@ -201,4 +201,4 @@ If you want to self-test your action on each `git push` event, you simply need t
The `pyaction-hello-world` implementation in this tutorial is available [here](https://github.com/lnxpy/pyaction-hello-world). Feel free to look over it.

## Publish to Marketplace
For more information about how you can ship your actions to the GitHub Marketplace, refer to the [publishing tutorial](tutorial.md#publishing) page section.
For more information about how you can ship your actions to the GitHub Marketplace, refer to the [publishing tutorial](tutorial.md#publishing-in-the-marketplace) page section.
8 changes: 6 additions & 2 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
In a workflow, you may want your action to accept some data to work on. It can be done using the `pyaction.io.read()` function. It takes the variable name and looks inside the environment to find the corresponding value.

In the following job step showcase, we're sending an API endpoint URL to our action and receiving it from that other side.
In the following job step showcase, we're sending an API endpoint URL to our action and receiving it from the other side.

```yaml title=".github/workflows/ci.yml"
steps:
Expand Down Expand Up @@ -80,7 +80,11 @@ In general, it would take three major steps to implement IO interactions inside
- Sending/receiving the parameters within the workflow.

## IssueForm
Issue form templates allow developers to create specific structures for those who want to open issues on their repositories. As GitHub says, you can define different input types, validations, default assignees, and default labels for your issue forms. This capability makes it easier to use Issue Forms as the UI side of your services with the help of GitHub Actions.
Issue form templates allow developers to create specific structures for those who want to open issues on their repositories.

> You can define different input types, validations, default assignees, and default labels for your issue forms. ==GitHub Inc.==

This capability makes it easier to use Issue Forms as the UI side of your services with the help of GitHub Actions.

In PyAction, you are able to parse the issues that are created with issue forms and use the data inside them.

Expand Down

0 comments on commit 1d4e024

Please sign in to comment.