Skip to content

Commit

Permalink
Create triggered.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mtweeman authored Jun 11, 2024
1 parent 5d7cd9b commit 7e1a1d4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/triggered.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Triggered

on:
workflow_run:
workflows:
- Test
types:
- completed
branches:
- main
workflow_dispatch:

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Step from triggered workflow
run: |
echo "Step from triggered workflow"

0 comments on commit 7e1a1d4

Please sign in to comment.