Skip to content

Latest commit

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

README.md

Basics of GitHub Actrion

Github Action - Helloworld

  • Create new workflow
name: GitHub Actions Helloworld
on: [push]
jobs:
  Welcome-GitHub-Actions:
    runs-on: ubuntu-latest
    steps:
      - run: echo " Hello world! 馃帀 The job was automatically triggered by a ${{ Github.event_name }} event."