crawler_detect 1.2.7 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/update_raw_files.yml +50 -0
- data/.rspec_status +169339 -0
- data/README.md +1 -1
- data/lib/crawler_detect/library/raw/Crawlers.json +1 -1
- data/lib/crawler_detect/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bab7b535b1ee5914aad9459474400fafea8b68391dc02302ac49a91abfdb030
|
|
4
|
+
data.tar.gz: 546a7433c5378f34cb4feb89e502057328e78fa3c650e7268b81ef0fd42bbb05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7cd19cf0c1ac1c86d2c23afb128ddefeff0ca07c96045d7bce0b87ec551ed13d69f4f9f0577d8e4fd01d901acbe4dc2143071923f2f1586de856a43602419d6
|
|
7
|
+
data.tar.gz: d14d82d0a09a3d50663b25e10376f311c6647dd92e885906d5f0cde90c37b8222927f1691df2631aaff1411852258347baeb84f59d50fca7f106e4ec9be68b78
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: Update Raw Crawler Files
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '0 10 * * *'
|
|
6
|
+
workflow_dispatch: {}
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
pull-requests: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
update-raw-files:
|
|
14
|
+
name: Update Raw Files
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
timeout-minutes: 30
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Checkout
|
|
20
|
+
uses: actions/checkout@v5
|
|
21
|
+
with:
|
|
22
|
+
fetch-depth: 0
|
|
23
|
+
|
|
24
|
+
- name: Execute raw files update
|
|
25
|
+
run: |
|
|
26
|
+
set -euxo pipefail
|
|
27
|
+
bash ./bin/update_raw_files
|
|
28
|
+
timeout-minutes: 5
|
|
29
|
+
|
|
30
|
+
- name: Create Pull Request
|
|
31
|
+
uses: peter-evans/create-pull-request@v7
|
|
32
|
+
with:
|
|
33
|
+
base: ${{ github.event.repository.default_branch }}
|
|
34
|
+
branch: "update-raw-files"
|
|
35
|
+
delete-branch: true
|
|
36
|
+
labels: automated
|
|
37
|
+
|
|
38
|
+
commit-message: |
|
|
39
|
+
Update raw crawler files
|
|
40
|
+
|
|
41
|
+
Automated update of crawlers data from upstream source.
|
|
42
|
+
|
|
43
|
+
title: "Automated: Update raw crawlers files"
|
|
44
|
+
body: |
|
|
45
|
+
## Update raw crawler files
|
|
46
|
+
|
|
47
|
+
This pull request contains automated update of crawlers data from upstream source.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
*This PR was created automatically by the `update_raw_files` GitHub Action.*
|