https://github.com/grayturtle01/github-actions-sandbox
https://github.com/grayturtle01/github-actions-sandbox
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/grayturtle01/github-actions-sandbox
- Owner: grayTurtle01
- Created: 2021-10-05T13:02:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-20T07:03:08.000Z (almost 3 years ago)
- Last Synced: 2023-07-20T07:48:40.943Z (almost 3 years ago)
- Language: JavaScript
- Size: 696 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ]
```