galabovaa is testing out GitHub Actions π #113
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: Target Workflow | |
| on: | |
| workflow_dispatch: | |
| repository_dispatch: | |
| types: [Integration-with-Automation] | |
| push: | |
| branches: | |
| - '*' | |
| run-name: ${{ github.actor }} is testing out GitHub Actions π | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Run a one-line script | |
| run: echo Hello, world! | |
| - name: Run a multi-line script | |
| run: | | |
| echo ${{ github.actor }} Hello ! | |
| echo test, and deploy your project. |