From 1b054d2bc481c09206cd44ed3a7ab99b6385746f Mon Sep 17 00:00:00 2001 From: Luc Sarzyniec Date: Sat, 8 Jan 2022 14:17:38 +0100 Subject: [PATCH] Update lists from GitLab CI --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..722e38a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +--- +update-lists: + stage: deploy + image: ruby:3 + before_script: + - git config user.name "GitLab CI Runner" + - git config user.email "gitlab@example.com" + - git checkout -b $MAIN_BRANCH || true + script: + - scripts/update-lists + - bundle exec scripts/generate-readme < README.md.erb > README.md + - scripts/sync-git + only: + - web + - schedules -- 2.47.2