Skip to content

Commit

Permalink
Push!
Browse files Browse the repository at this point in the history
  • Loading branch information
ithsjeff committed Mar 5, 2024
1 parent 89d4b3e commit e938e90
Show file tree
Hide file tree
Showing 193 changed files with 2,393,158 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2

updates:

- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
40 changes: 40 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: 'Main'

on:
push:
branches: ['*']
pull_request:
branches: ['*']
schedule:
- cron: '45 * * * *'
workflow_dispatch:

permissions: {}

jobs:

update:
name: 'Update'
runs-on: 'ubuntu-latest'
permissions:
contents: 'write'
container: 'docker.io/ubuntu:latest'
steps:
- name: 'Install dependencies'
run: |
apt-get update
apt-get install -y --no-install-recommends ca-certificates curl git jq
- name: 'Checkout project'
uses: 'actions/checkout@v4'
- name: 'Update lists'
run: |
sh ./update.sh
- name: 'Push lists'
if: >-
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch'
run: |
git config --global --add safe.directory "${PWD:?}"
git config --global user.name 'Skiddle-Git'
git config --global user.email '160487326+Skiddle-Git@users.noreply.github.com'
sh ./push.sh
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# blocklists
# blocklists

This repository is only a mirror of multiple third-party blocklists.
Loading

0 comments on commit e938e90

Please sign in to comment.