chore/bot-update-submodule Update submodules for matching repositories #24
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: Example Workflow | |
on: [push] | |
jobs: | |
example-job: | |
runs-on: ubuntu-latest | |
env: | |
CUSTOM_PROPERTY: "custom_value" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Print custom property | |
run: | | |
echo "Custom property value: $CUSTOM_PROPERTY" |