This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
Test Action #9
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
# .github/workflows/test_action.yaml | |
name: Test Action | |
on: | |
workflow_dispatch: # allow manual trigger of workflow | |
jobs: | |
diff: | |
runs-on: ubuntu-latest | |
name: git diff node configs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Do git diff | |
id: sesam_diff | |
uses: ./ # Uses an action in the root directory | |
with: | |
download: false | |
config_path_local: node_test_upload | |
config_path_download: node_test_download |