Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/dependabot2jira.yml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions utils/cq/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading