chore: update changes (#3) #20
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: Close Multiple Issues from Same Author | |
on: | |
issues: | |
types: | |
- reopened | |
- opened | |
workflow_dispatch: | |
push: { branches: ["master", "main", "testing"] } | |
jobs: | |
close-multiple-issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: npm install | |
- name: Compile TypeScript | |
run: npx tsc | |
- name: Run Custom Action | |
run: | | |
node dist/index.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |