misc: update playwright-webkit from 1.24.2 to 1.56.1 and base-internal image from Debian Bullseye to Debian Trixie
#26201
This file contains hidden or 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: 'Handle Issue/PR Comment Workflow' | |
| on: | |
| # makes this workflow reusable | |
| workflow_call: | |
| secrets: | |
| TRIAGE_BOARD_TOKEN: | |
| required: true | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| handle-comment-scenarios: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'cypress-io/release-automations' | |
| ref: 'master' | |
| ssh-key: ${{ secrets.WORKFLOW_DEPLOY_KEY }} | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Run comment_workflow.js Script | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.TRIAGE_BOARD_TOKEN }} | |
| script: | | |
| const script = require('./scripts/triage/comment_workflow.js') | |
| await script.handleComment(github, context); |