diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-05-26 01:57:59 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-25 22:27:59 +0200 |
commit | 9301c507f91ea40fc0d4d86cf708a7ba6d3b0bb9 (patch) | |
tree | fae69af3ccd22e81a494c232034069263d3aab92 /.github/workflows/check-unused-imports.yml | |
parent | b8d844027482ee3e2ec73e4b1c7881572e962f98 (diff) | |
download | vyos-1x-9301c507f91ea40fc0d4d86cf708a7ba6d3b0bb9.tar.gz vyos-1x-9301c507f91ea40fc0d4d86cf708a7ba6d3b0bb9.zip |
T6399: added reusable workflows codeowners file to sagitta (#3515)
Diffstat (limited to '.github/workflows/check-unused-imports.yml')
-rw-r--r-- | .github/workflows/check-unused-imports.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/check-unused-imports.yml b/.github/workflows/check-unused-imports.yml new file mode 100644 index 000000000..324a63e90 --- /dev/null +++ b/.github/workflows/check-unused-imports.yml @@ -0,0 +1,16 @@ +name: Check for unused imports using Pylint +on: + pull_request: + branches: + - current + - sagitta + - equuleus + workflow_dispatch: + +permissions: + contents: read + +jobs: + check-unused-imports: + uses: vyos/.github/.github/workflows/check-unused-imports.yml@feature/T6349-reusable-workflows + secrets: inherit |