v2.14.16 #282
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: '[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}) |