summaryrefslogtreecommitdiff
path: root/.github/workflows/data-update.yml
blob: 299550ef2067eceecf3f1898c20d1c59760b96f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: "Update searx.data"
on:
  schedule:
    - cron: "05 16 * * 5"

jobs:
  updateData:
    name: Update data
    runs-on: ubuntu-20.04
    if: ${{ github.repository_owner == 'searx'}}
    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 }}"