blob: 0255998e299f16da6c6fbb1d62ddc195289ffde8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: git rev-parse HEAD
|