summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-01-24 11:40:32 +0100
committerAlexandre Flament <alex@al-f.net>2021-01-24 13:32:39 +0100
commit3330cf4a4672906c79e9e24d0cbcd18ca8674fa1 (patch)
tree9dc620f9519a84efae81f6ed4d87b3f37657f388 /.github
parentf4a17acb7a4fa82c5cb629f4eaad11ef528f89e4 (diff)
downloadsearxng-3330cf4a4672906c79e9e24d0cbcd18ca8674fa1.tar.gz
searxng-3330cf4a4672906c79e9e24d0cbcd18ca8674fa1.zip
[enh] every monday, call utils/fetch_*.py scripts and create a PR automatically
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/data-update.yml67
1 files changed, 67 insertions, 0 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml
new file mode 100644
index 000000000..a97169767
--- /dev/null
+++ b/.github/workflows/data-update.yml
@@ -0,0 +1,67 @@
+name: "Update searx.data"
+on:
+ schedule:
+ - cron: "37 13 * * 0"
+
+jobs:
+ updateData:
+ name: Update data
+ runs-on: ubuntu-20.04
+ if: env.DATA_PR_TOKEN != null
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Install Ubuntu packages
+ run: |
+ sudo ./utils/searx.sh install packages
+
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.9'
+ architecture: 'x64'
+
+ - name: Cache Python dependencies
+ id: cache-python
+ uses: actions/cache@v2
+ with:
+ path: ./local
+ key: python-${{ matrix.os }}-3.9-${{ hashFiles('requirements*.txt', 'setup.py') }}
+
+ - name: Install Python dependencies
+ if: steps.cache-python.outputs.cache-hit != 'true'
+ run: |
+ make V=1 install
+
+ - name: Fetch data
+ run: |
+ source local/py3/bin/activate
+ python utils/fetch_firefox_version.py
+ python utils/fetch_languages.py
+ python utils/fetch_ahmia_blacklist.py
+ python utils/fetch_wikidata_units.py
+ # python utils/fetch_currencies.py
+
+ - name: Create Pull Request
+ id: cpr
+ uses: peter-evans/create-pull-request@v3
+ with:
+ token: ${{ secrets.DATA_PR_TOKEN }}
+ commit-message: Update searx.data
+ committer: searx-bot <noreply@github.com>
+ author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
+ signoff: false
+ branch: automatic-update-data
+ delete-branch: true
+ title: 'Update searx.data'
+ body: |
+ Update searx.data
+ labels: |
+ data
+ draft: false
+
+ - name: Check outputs
+ run: |
+ echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
+ echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"