-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (34 loc) · 1.32 KB
/
update-e2e-tools.yaml
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
# Этот файл сгенерирован автоматически, не редактируйте его вручную
name: Обновление зависимостей @csssr/e2e-tools
on:
schedule:
- cron: 0 0 * * 3 # Каждую среду в 00:00
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14
cache: yarn
- name: Upgrade e2e tests dependencies
working-directory: e2e-tests
run: |
yarn
yarn et upgrade
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Обновление зависимостей @csssr/e2e-tools
title: Обновление зависимостей @csssr/e2e-tools
body: |
Описание изменений:
- [@csssr/e2e-tools](https://github.com/CSSSR/e2e-tools/blob/master/modules/tools/CHANGELOG.md)
- [@csssr/e2e-tools-nightwatch](https://github.com/CSSSR/e2e-tools/blob/master/modules/nightwatch/CHANGELOG.md):
labels: dependencies,e2e
branch: upgrade-e2e-tests-dependencies
add-paths: |
e2e-tests