mirror of
https://github.com/kamilchodola/wait-for-workflow-action.git
synced 2026-04-29 15:47:40 -05:00
Create to_be_triggered.yml
This commit is contained in:
17
.github/workflows/to_be_triggered.yml
vendored
Normal file
17
.github/workflows/to_be_triggered.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Triggered Workflow
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
triggered_job:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run a basic shell script
|
||||
run: |
|
||||
echo "Starting triggered workflow..."
|
||||
sleep 60
|
||||
echo "Triggered workflow completed successfully!"
|
||||
Reference in New Issue
Block a user