This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
Update DB #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update DB | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 1,15 * *' # 1st and 15th of every month | |
jobs: | |
update_db: | |
name: "Update DB" | |
runs-on: ubuntu-latest | |
env: | |
TRIGGER_TOKEN: ${{ secrets.TRIGGER_TOKEN }} | |
steps: | |
- name: Trigger CI | |
# yamllint disable rule:line-length | |
run: | | |
curl --request POST --form token=$TRIGGER_TOKEN --form ref=main https://gitlab.com/api/v4/projects/36844106/trigger/pipeline | |
# yamllint enable rule:line-length |