Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
coreycarvalho committed Nov 4, 2024
1 parent a352af6 commit ff37acb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dependency-ticket-creation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 .github/ISSUE_TEMPLATE/notify-dependency-update-template.md \
--label "Notify"

0 comments on commit ff37acb

Please sign in to comment.