-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into marc-alternative-titles
- Loading branch information
Showing
6 changed files
with
211 additions
and
92 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Automatically mark any pull requests that have been inactive for 30 days as "Stale" | ||
# then close them 3 days later if there is still no activity. | ||
# | ||
# Shamelessly copied from https://github.com/guardian/.github/blob/main/workflow-templates/stale.yml | ||
name: "Stale PR Handler" | ||
|
||
on: | ||
schedule: | ||
# Check for Stale PRs every Monday to Thursday morning | ||
# Don't check on Fridays as it wouldn't be very nice to have a bot mark your PR as Stale on Friday and then close it on Monday morning! | ||
- cron: "0 6 * * MON-THU" | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
id: stale | ||
# Read about options here: https://github.com/actions/stale#all-options | ||
with: | ||
# never automatically mark issues as stale | ||
days-before-issue-stale: -1 | ||
|
||
# Wait 30 days before marking a PR as stale | ||
days-before-stale: 30 | ||
stale-pr-message: > | ||
This PR is stale because it has been open 30 days with no activity. | ||
Unless a comment is added or the “stale” label removed, this will be closed in 3 days | ||
# Wait 3 days after a PR has been marked as stale before closing | ||
days-before-close: 3 | ||
close-pr-message: This PR was closed because it has been stalled for 3 days with no activity. | ||
|
||
# Ignore PR's raised by Dependabot | ||
exempt-pr-labels: "dependencies" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -839,9 +839,9 @@ [email protected]: | |
obliterator "^1.6.1" | ||
|
||
node-fetch@2: | ||
version "2.6.6" | ||
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.6.tgz#1751a7c01834e8e1697758732e9efb6eeadfaf89" | ||
integrity sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA== | ||
version "2.6.7" | ||
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" | ||
integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== | ||
dependencies: | ||
whatwg-url "^5.0.0" | ||
|
||
|
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
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
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
Oops, something went wrong.