Skip to content

Commit

Permalink
ci: Run against more tags in scheduled tests (#1208)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 14, 2024
1 parent dca972f commit b9af7a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ jobs:
uses: ./.github/actions/install-tools

- name: Test against required tags
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') || inputs.all_integrations }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') || inputs.all_integrations || github.event_name == 'schedule' }}
run: |
nox --verbose -s generate-tags > limesurvey-docker-tags.json
- name: Test against latest tags
if: ${{ !contains(github.event.pull_request.labels.*.name, 'Release') && !inputs.all_integrations }}
if: ${{ !contains(github.event.pull_request.labels.*.name, 'Release') && !inputs.all_integrations && github.event_name != 'schedule' }}
run: |
echo '["6-apache", "5-apache"]' > limesurvey-docker-tags.json
Expand Down

0 comments on commit b9af7a3

Please sign in to comment.