Run 13740991612 by @JustinGrote #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example 02 - More Meta #Display name that will show in UI | |
on: workflow_dispatch | |
run-name: Run ${{ github.run_id }} by @${{ github.actor }} | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
theBasics: | |
#A display name other than the job | |
name: Demonstrate GHA Basics | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🕰️ Get the Date | |
id: getDate | |
run: | | |
$date = Get-Date | |
Write-Output "Congrats it worked at ${date}! 🎉🎉🎉" |