From 462ba084ce697426e886e2b74f2489d63af4581e Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Tue, 9 Aug 2022 06:09:10 +0200 Subject: [PATCH] chore: run update workflow on pull request (#1210) Allows to catch issues with the update workflow with related PRs. --- .github/workflows/update-dependencies.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 208b36c4..c2fcada5 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -1,6 +1,15 @@ name: Update dependencies on: + pull_request: + paths: + - '.github/workflows/update-dependencies.yml' + - 'bin/update_pythons.py' + - 'bin/update_docker.py' + - 'bin/update_virtualenv.py' + - 'bin/projects.py' + - 'docs/data/projects.yml' + - 'noxfile.py' workflow_dispatch: schedule: - cron: '0 6 * * 1' # "At 06:00 on Monday."