Skip to content

Commit

Permalink
Add GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
quinna-h committed Aug 16, 2024
1 parent 4c14fff commit e7f4230
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/generate-package-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Generate Package Versions
on:
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday
workflow_dispatch: # we can trigger manually

jobs:
generate-package-versions:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ddtrace
steps:
- uses: actions/checkout@v4
with:
path: ddtrace

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Run regenerate-riot-latest
run: ./scripts/regenerate-riot-latest.sh

0 comments on commit e7f4230

Please sign in to comment.