-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Example Workflow | ||
Check warning on line 1 in .github/workflows/test.yml GitHub Actions / pre-commit
Check warning on line 1 in .github/workflows/test.yml GitHub Actions / pre-commit
Check warning on line 1 in .github/workflows/test.yml GitHub Actions / pre-commit
Check warning on line 1 in .github/workflows/test.yml GitHub Actions / pre-commit
|
||
|
||
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" | ||
Check failure on line 15 in .github/workflows/test.yml GitHub Actions / pre-commit
Check failure on line 15 in .github/workflows/test.yml GitHub Actions / pre-commit
Check failure on line 15 in .github/workflows/test.yml GitHub Actions / pre-commit
Check failure on line 15 in .github/workflows/test.yml GitHub Actions / pre-commit
|