summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNikolaos Boutalas <nikolaos@boutalas.me>2024-01-05 03:50:50 +0200
committerNikolaos Boutalas <nikolaos@boutalas.me>2024-03-17 11:48:24 +0200
commit7217241c87516875cc6f882a9125403b97bf3e06 (patch)
tree3ddfc0e0d85d41fe141b87c099f82f676bfac545 /.github
parent77475705a59c9c347e8face58cf17b051f84f63e (diff)
Minor changesHEADmaster
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml9
-rw-r--r--.github/workflows/ansible-lint.yml23
2 files changed, 0 insertions, 32 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 618063e..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: weekly
- labels:
- - "dependencies"
- - "skip-changelog"
diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml
deleted file mode 100644
index cc0913c..0000000
--- a/.github/workflows/ansible-lint.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: ansible-lint
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-jobs:
- build:
- name: Ansible Lint
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v3
- - name: Setup Python
- uses: actions/setup-python@v4
- - name: Install ansible-lint
- run: |
- python -m pip install --upgrade pip
- pip install ansible-lint
- - name: Run ansible-lint
- run: ansible-lint .