error fixed #2
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: multi event test | ||
|
Check failure on line 1 in .github/workflows/multi event.yml
|
||
| on: | ||
| issues: | ||
| pull_request: | ||
| jobs: | ||
| my job 1 : | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: run a command | ||
| run: | | ||
| echo "REF: $GITHUB_REF" | ||
| echo "Job ID: $GITHUB_JOB" | ||
| echo "Action: $GITHUB_ACTION" | ||
| echo "Actor: $GITHUB_ACTOR" | ||
| my job 2 : | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: say my name | ||
| run: echo "my name is $(whoami)" | ||