blob: 5ed7c60119349eb08f968fcadddef8bd6807d461 (
plain) (
tree)
|
|
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [pull_request]
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
|