Skip to content

Commit

Permalink
remove current use of repo path
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol-Baranwal committed Nov 11, 2023
1 parent 1392df7 commit f0b6876
Showing 1 changed file with 13 additions and 20 deletions.
33 changes: 13 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,23 @@ on:

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: Setup Node.js
# uses: actions/setup-node@v2
# with:
# node-version: 16
- name: Install Dependencies
run: npm install

# - name: Install Dependencies
# run: npm install
- name: Compile TypeScript
run: npx tsc

# - name: Compile TypeScript
# run: npx tsc

# - name: Run Custom Action
# run: |
# node dist/index.js
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run Custom Action
run: |
node dist/index.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f0b6876

Please sign in to comment.