diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-04 21:06:26 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-04-04 21:07:00 +0200 |
commit | 44bd4c360dc032e4bde55b11423ddae0f042600e (patch) | |
tree | c03402203647de9c0c4368051ebc17db8b58396f /.github | |
parent | a1208818b443acb645c3c48e44b8d1dbae1fb128 (diff) | |
download | vyos-1x-44bd4c360dc032e4bde55b11423ddae0f042600e.tar.gz vyos-1x-44bd4c360dc032e4bde55b11423ddae0f042600e.zip |
GitHub: fix "on" trigger for unused-imports workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/unused-imports.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/unused-imports.yml b/.github/workflows/unused-imports.yml index e716a9c01..d6e820ae6 100644 --- a/.github/workflows/unused-imports.yml +++ b/.github/workflows/unused-imports.yml @@ -1,7 +1,7 @@ name: Check for unused imports using Pylint -on: push - # pull_request_target: - # types: [opened, reopened, ready_for_review, locked] +on: + pull_request_target: + types: [opened, reopened, ready_for_review, locked] jobs: Check-Unused-Imports: |