Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Heng Qin committed Jan 15, 2024
0 parents commit 5993c72
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/a.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Preflight

on:
- pull_request
- push

jobs:
preflight-job:
name: Preflight Step
runs-on: ubuntu-latest
steps:
- run: env

16 changes: 16 additions & 0 deletions .github/workflows/b.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Test

on:
workflow_run:
workflows:
- Preflight
types:
- completed

jobs:
test-job:
name: Test Step
runs-on: ubuntu-latest
steps:
- run: env

0 comments on commit 5993c72

Please sign in to comment.