Debug Workflow #1
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
name: Debug Workflow | |
on: | |
schedule: | |
- cron: '* * * * *' # Run every 5 minutes | |
workflow_dispatch: # Allow manual triggering | |
jobs: | |
debug-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print debug information | |
run: | | |
echo "Workflow is running!" | |
echo "Current time: $(date)" | |
echo "GitHub context: ${{ toJson(github) }}" |