Release 0.7.1 (#30) #2
Workflow file for this run
This file contains hidden or 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 fixed issues | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
workflow_dispatch: | |
permissions: | |
issues: write | |
jobs: | |
fixed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4.1.0 | |
with: | |
days-before-stale: 0 | |
days-before-close: 0 | |
ignore-updates: true | |
remove-stale-when-updated: false | |
close-issue-message: >- | |
This issue has been fixed in the latest release of this extension, | |
which is available in the VS Code extension marketplace. | |
stale-issue-label: fixed-pending-release | |
only-labels: fixed-pending-release |