Workflow file for this run
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: Biweekly Dependency Ticket Creation | |
# on: | |
# schedule: | |
# - cron: "0 9 */14 * 1" # Runs every two weeks on Monday at 09:00 UTC | |
on: | |
push: | |
branches: | |
- "1381-dependency-ticket-automation" | |
jobs: | |
create_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create GitHub Issue | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh issue create --template notify-dependency-update-template.md --label "Notify" |