mirror of
https://github.com/twbs/bootstrap.git
synced 2025-12-28 05:33:57 +00:00
Bumps the github-actions group with 2 updates: [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) and [actions-cool/issues-helper](https://github.com/actions-cool/issues-helper). Updates `streetsidesoftware/cspell-action` from 7.2.1 to 8.0.0 - [Release notes](https://github.com/streetsidesoftware/cspell-action/releases) - [Changelog](https://github.com/streetsidesoftware/cspell-action/blob/main/CHANGELOG.md) - [Commits](76c6f6d52a...3294df585d) Updates `actions-cool/issues-helper` from 3.7.1 to 3.7.2 - [Release notes](https://github.com/actions-cool/issues-helper/releases) - [Changelog](https://github.com/actions-cool/issues-helper/blob/main/CHANGELOG.md) - [Commits](564cd9b1ba...9861779a69) --- updated-dependencies: - dependency-name: streetsidesoftware/cspell-action dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions-cool/issues-helper dependency-version: 3.7.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
777 B
YAML
27 lines
777 B
YAML
name: Close Issue Awaiting Reply
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
issue-close-require:
|
|
permissions:
|
|
# allow actions-cool/issues-helper to update issues and PRs
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'twbs/bootstrap'
|
|
steps:
|
|
- name: awaiting reply
|
|
uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3.7.2
|
|
with:
|
|
actions: "close-issues"
|
|
labels: "awaiting-reply"
|
|
inactive-day: 14
|
|
body: |
|
|
As the issue was labeled with `awaiting-reply`, but there has been no response in 14 days, this issue will be closed. If you have any questions, you can comment/reply.
|