Skip to content

Commit

Permalink
Create test-workflow-custom-deployment-rule.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fathom-piotr authored May 1, 2024
1 parent 75c13d8 commit 78a8467
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-workflow-custom-deployment-rule.yml
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!"

0 comments on commit 78a8467

Please sign in to comment.