Merge pull request #3 from boost/dl/move-actions #2
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: 'Add TDD Question' | |
description: 'Add a TDD feedback question to newly opened pull requests' | |
runs: | |
using: 'composite' | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "21" | |
- name: Add TDD Question | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const script = require('${{ github.action_path }}/src/addTDDQuestion.js'); | |
await script({ github, context }); |