Test custom action #8
This file contains 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: Test custom action | |
on: workflow_dispatch | |
jobs: | |
#====== Test ======# | |
hello_world_job: | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
# Step 1: Checkout the repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Step 2: Run custom action | |
- name: Run custom action | |
uses: ./src/DockerContainer # Uses an action in the root directory | |
id: hello | |
with: | |
who-to-greet: 'GitHub' |