Skip to content

justdoit176/gha-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 

Repository files navigation

My GitHub Actions Playground

This is designed to help experiment with and learn about GitHub Actions.

Getting Started

To get started with GitHub Actions in this repository, follow these steps:

  1. Clone the repository:

    git clone https://github.com/your-username/gha-playground.git
    cd gha-playground
  2. Create a new workflow:

    • Navigate to the .github/workflows directory.
    • Create a new YAML file for your workflow, e.g., example-workflow.yml.
  3. Define your workflow:

Example Workflow

Here is an example of a simple workflow that runs on every push:

name: Example Workflow

on: [push]

jobs:
  build:
     runs-on: ubuntu-latest

     steps:
     - name: Checkout repository
        uses: actions/checkout@v4

     - name: Run a one-line script
        run: echo "Hello, GitHub Actions!"

Resources

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published