summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorkumvijaya <kumvijaya@gmail.com>2024-05-28 13:39:08 +0530
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-05-28 10:14:00 +0000
commit1746378a62abf1e5e86e2fcd54fe7012d23a06d5 (patch)
treed1e97c939940eb731d4c33bc2777709658bd9ce2 /.github/workflows/main.yml
parentd2002c292af2692997073514bdb60d4371df3058 (diff)
downloadvyos-documentation-1746378a62abf1e5e86e2fcd54fe7012d23a06d5.tar.gz
vyos-documentation-1746378a62abf1e5e86e2fcd54fe7012d23a06d5.zip
T6410: worflow fixes
(cherry picked from commit 7ddd96be3dd3f4ad9f886d6e7110d4380074ffb8)
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 67556017..00000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-name: Linting
-on:
- pull_request:
-
-jobs:
- lint:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: File Changes
- id: file_changes
- uses: trilom/file-changes-action@v1.2.3
-
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: '3.x'
-
- - name: run python based linter
- run: python .github/vyos-linter.py '${{ steps.file_changes.outputs.files_modified }}'
-
- env:
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
-
-