diff --git a/.github/workflows/dependabot2jira.yml b/.github/workflows/dependabot2jira.yml new file mode 100644 index 00000000000..2d58bae2c50 --- /dev/null +++ b/.github/workflows/dependabot2jira.yml @@ -0,0 +1,15 @@ +name: Dependabot Jira ticket +# This workflow is triggered to create a Jira ticket for every new dependabot PR + +permissions: {} + +on: + push: + pull_request: + types: [opened] + +jobs: + run-if-dependabot: + # Remove "|| github.actor == 'grom72'" before merge + if: github.actor == 'dependabot' || github.actor == 'grom72' + runs-on: ubuntu-latest diff --git a/utils/cq/requirements.txt b/utils/cq/requirements.txt index dda239f075d..079145ab4f3 100644 --- a/utils/cq/requirements.txt +++ b/utils/cq/requirements.txt @@ -3,9 +3,9 @@ pyenchant ## flake8 6 removed --diff option which breaks flake precommit hook. ## https://github.com/pycqa/flake8/issues/1389 https://github.com/PyCQA/flake8/pull/1720 flake8==7.3.0 -isort==6.0.1 -pylint==3.3.7 -yamllint==1.37.1 +isort==7.0.0 +pylint==4.0.4 +yamllint==1.38.0 codespell==2.4.1 # Used by ci/jira_query.py which pip installs it standalone. jira