fixed bug with solution proposed in issue Potential bug in indexing #4
This file contains 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 Stale Issues and PRs | |
on: [pull_request, workflow_dispatch] | |
permissions: | |
contents: write # only for delete-branch option | |
issues: write | |
pull-requests: write | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
steps: | |
- name: Fetch actions (v3) | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Close Stale Issues | |
uses: actions/[email protected] |