Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

ghfjdjghfjghffghj

ghfjdjghfjghffghj #25

name: CI
on:
push:
branches:
- main
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Create everything list
run: node scripts/create-everything-list
- name: Generate AdGuard list
run: node scripts/generate-adguard.js
- name: Show files
run: ls -R
- name: Commit files
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git add .
git commit -m "Update blocklist files by GitHub Actions"
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
force: true