-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create test-workflow-custom-deployment-rule.yml
- Loading branch information
1 parent
75c13d8
commit 78a8467
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
.github/workflows/test-workflow-custom-deployment-rule.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This workflow is here to be able to test the custom deployment rule for triggering smoke DAG tests. | ||
# Once https://app.asana.com/0/0/1206682594146545/f is done, it's likely possible to remove it. | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
job1: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "Hello from job 1!" | ||
|
||
job2: | ||
runs-on: ubuntu-latest | ||
needs: [job1] | ||
steps: | ||
- run: echo "Hello from job 2!" | ||
|
||
job3: | ||
runs-on: ubuntu-latest | ||
needs: [job2] | ||
steps: | ||
- run: echo "Hello from job 3!" |