Skip to content

Commit ec8b58e

Browse files
authored
Merge pull request #43 from Isaaker/Developer
v1.1.0
2 parents f2b656e + 42a7c04 commit ec8b58e

14 files changed

+7299
-7472
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
version: 2
77
updates:
88
- package-ecosystem: "pip" # See documentation for possible values
9-
directory: "/requirements.txt" # Location of package manifests
9+
directory: "./requirements.txt" # Location of package manifests
1010
schedule:
1111
interval: "weekly"
1212
- package-ecosystem: "github-actions"

.github/workflows/build_blocklist.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,18 @@ jobs:
3333
# Install python
3434
- name: Install Python
3535
uses: actions/setup-python@v5
36-
36+
37+
# Remove the duplicated Blocklist domains
38+
- name: Remove duplicated domains
39+
run: python3 ${{ github.WORKSPACE }}/${{ steps.extract_branch.outputs.branch }}/scripts/remove_duplicated.py
40+
env:
41+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
42+
3743
# Run the Blocklist converter
3844
- name: Build blocklist
3945
run: python3 ${{ github.WORKSPACE }}/${{ steps.extract_branch.outputs.branch }}/scripts/update_lists.py
46+
env:
47+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
4048

4149
# Update the current Pull Request
4250
- name: Update the Pull Request

0 commit comments

Comments
 (0)