An open API service indexing awesome lists of open source software.

https://github.com/grayturtle01/github-actions-sandbox


https://github.com/grayturtle01/github-actions-sandbox

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# gitHub-Actions Sandbox 🧪

## Hello gitHub Actions
```
name: My First WorkFlow

on:
push

jobs:
task_0:

runs-on: ubuntu-latest

steps:

- name: Greetings with echo
run: echo "Hello gitHub actions"

```

## Triggers all push
```
on: push
```

## Triggers on branch push
```
on:
push:
branches:
- main
- dev

```
```
on:
push:
branches: [main, dev]

```
## On pull request
```
on:
pull_request:
branches: [ main ]
```