Skip to content

Commit

Permalink
retry on all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Aug 27, 2024
1 parent 124b82f commit a18e969
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI_license_compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Core / License Compliance

on:
pull_request:
paths:
- "integrations/**/pyproject.toml"
# paths:
# - "integrations/**/pyproject.toml"
# Since we test PRs, there is no need to run the workflow at each
# merge on `main`. Let's use a cron job instead.
schedule:
Expand Down Expand Up @@ -52,7 +52,8 @@ jobs:
pip install toml
# Determine the list of pyproject.toml files to process
if [ "${{ github.event_name }}" = "schedule" ]; then
# if [ "${{ github.event_name }}" = "schedule" ]; then
if true; then
echo "Scheduled run: processing all pyproject.toml files..."
FILES=$(find integrations -type f -name 'pyproject.toml')
else
Expand Down Expand Up @@ -92,4 +93,3 @@ jobs:
title: |
Core integrations license compliance nightly failure: ${{ github.workflow }}
api-key: ${{ secrets.CORE_DATADOG_API_KEY }}

0 comments on commit a18e969

Please sign in to comment.