ODC Daily JIRA Status #192
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: ODC Daily JIRA Status | |
on: | |
# Trigger on a cron schedule (every weekday at 10:00 AM IST) | |
schedule: | |
- cron: '30 4 * * 1-5' # Adjusted for 10:00 AM IST in UTC | |
workflow_dispatch: # Allow manual triggering of the workflow | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run Bash Script | |
run: bash devconsole/team-devconsole.sh ${{ secrets.JIRA_PAT }} ${{ secrets.TEAM_DEVCONSOLE_SLACK_HOOK }} |