diff options
author | Carlos Soriano <csoriano1618@gmail.com> | 2018-12-12 15:51:41 +0000 |
---|---|---|
committer | Carlos Soriano <csoriano1618@gmail.com> | 2018-12-12 15:51:41 +0000 |
commit | 06faf4a6e35fc922a159397bb82b7d8d5fbaca84 (patch) | |
tree | 5d5c373e89d0919c380abdda65a4086ccedc9221 /.gitlab-ci.yml | |
parent | ddded19a7852a5f002ceed561ac9e0310b69b637 (diff) | |
download | nautilus-06faf4a6e35fc922a159397bb82b7d8d5fbaca84.tar.gz |
CI: Add triage bot token
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3fa81795e..8eded2562 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,10 +5,10 @@ variables: BUNDLE: "nautilus-dev.flatpak" stages: + - triage - test - cross_environment - deploy - - triage .test_template: &distro_test script: @@ -188,7 +188,7 @@ triage: stage: triage script: - gem install gitlab-triage - - gitlab-triage --token $nautilus_bot_token --project-id $CI_PROJECT_PATH --host-url https://gitlab.gnome/org + - gitlab-triage --token $TRIAGE_BOT_TOKEN --project-id $CI_PROJECT_PATH --host-url https://gitlab.gnome/org only: - schedules @@ -196,7 +196,7 @@ triage:dry-run: stage: triage script: - gem install gitlab-triage - - gitlab-triage --dry-run --token $nautilus_bot_token --project-id $CI_PROJECT_PATH --host-url https://gitlab.gnome/org + - gitlab-triage --dry-run --token $TRIAGE_BOT_TOKEN --project-id $CI_PROJECT_PATH --host-url https://gitlab.gnome/org only: - schedules when: manual |