-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (35 loc) · 1020 Bytes
/
manual_e2e.yml
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
name: '[manual-e2e]'
on:
pull_request:
branches:
- master
jobs:
hide_previous_if_exists:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 'master'
- uses: actions/github-script@v5
with:
script: |
const script = require('./.github/workflows/code/minimise-all-checklist-comments.js')
await script({github, context})
add_e2e_checklist:
needs: hide_previous_if_exists
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: 'Install gherkin-official'
run: 'pip install gherkin-official'
- name: 'Generate checklist'
run: 'python features/_convert.py'
- name: 'Add checklist comment'
uses: actions/github-script@v5
with:
script: |
const script = require('./.github/workflows/code/create-checklist-comment.js')
await script({github, context})