-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 824 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Close Multiple Issues from Same Author
on:
issues:
types:
- reopened
- opened
workflow_dispatch:
push: { branches: ["master", "main", "testing"] }
jobs:
close-multiple-issues:
name: Checks if this action works
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# # - uses: ./
# - name: Setup Node.js
# uses: actions/setup-node@v2
# with:
# node-version: 16
# - 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 }}