Skip to content

Commit

Permalink
Add action
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Sep 6, 2023
1 parent a72ebb2 commit d1aa62c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/add-milestone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Add milestone to closed issue"
on:
issues:
types: [closed, reopened]

jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v3
with:
repository: "karrtikr/vscode-github-triage-actions"
ref: stable
path: ./actions
- name: Checkout Repo
if: github.event_name != 'issues'
uses: actions/checkout@v3
with:
path: ./repo
fetch-depth: 0
- name: Install Actions
run: npm install --production --prefix ./actions
- name: "Add milestone to closed issue"
uses: ./actions/python-add-milestone
with:
token: ${{secrets.GITHUB_TOKEN}}

0 comments on commit d1aa62c

Please sign in to comment.