Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 849de32

Browse files
committed
Add automation for fixed issues
1 parent 8bc4d99 commit 849de32

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/fixed-issues.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Close fixed issues
2+
3+
on:
4+
push:
5+
tags:
6+
- "v[0-9.]+"
7+
workflow_dispatch:
8+
9+
jobs:
10+
fixed:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/[email protected]
14+
with:
15+
days-before-stale: 0
16+
days-before-close: 0
17+
ignore-updates: true
18+
close-issue-message: >-
19+
This issue has been fixed in the latest release of this extension,
20+
which is available in the VS Code extension marketplace.
21+
stale-issue-label: fixed-pending-release
22+
only-labels: fixed-pending-release

0 commit comments

Comments
 (0)