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 9930515
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependency-ticket-creation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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"

0 comments on commit 9930515

Please sign in to comment.