Skip to content

[Cloud]: AWS Selenium Grid Stack #127

[Cloud]: AWS Selenium Grid Stack

[Cloud]: AWS Selenium Grid Stack #127

Workflow file for this run

name: Add Task List to Issues
permissions:
issues: write
on:
# workflow_dispatch
issues:
types:
- opened
- labeled
concurrency:
group: ${{ github.event.issue.number }}
cancel-in-progress: true
jobs:
add-task-list:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Add Task List to Issues
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('./scripts/add-task.js')
await script({github, context})