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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 446f75d316a642af93cb275161f5a22ea05b147dc2240b99a831171b607a3a9b
4
- data.tar.gz: 48df68660adec8fbc957cc390843aa56452394a3c4f0b9cf759c8752c5d8478e
3
+ metadata.gz: 8bab7b535b1ee5914aad9459474400fafea8b68391dc02302ac49a91abfdb030
4
+ data.tar.gz: 546a7433c5378f34cb4feb89e502057328e78fa3c650e7268b81ef0fd42bbb05
5
5
  SHA512:
6
- metadata.gz: 58062206e09ece0455c6a91b97b84bb7877107218adb26f3bf832398f1233213fa9d3c84de6fa20db30b2652847488139aa472568fa27c935430e54e2932e5ab
7
- data.tar.gz: 3892d04d8c9ee1360c993438295f664f33fab1d975ca51c9baf67ec037066a5a4c330570c97811f0a41588bf480e620e0edc58c321adea6d5077a425a9dc572c
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.*