-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-0.1.1' into trunk
- Loading branch information
Showing
11 changed files
with
11,336 additions
and
494 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.1.0 | ||
current_version = 0.1.1 | ||
commit = False | ||
tag = False | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,18 @@ jobs: | |
path: code | ||
|
||
- name: Write release-notes.md | ||
run: grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md | sed '$d' | tee "${GITHUB_WORKSPACE}/release-notes.md" | ||
# 1. Search for the content from the start of the file to the 2nd version heading. | ||
# 2. Remove the 2nd version heading. | ||
# 3. Search for the content after the first version heading (removes any description at the | ||
# start of the file. | ||
# 4. Remove the 1st version heading. | ||
# This leaves the content of the release notes for the current release. | ||
run: > | ||
grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md | | ||
sed '$d' | | ||
grep -P -A 10000 "^## v*\d*\.\d*\.\d*" | | ||
sed '1d' | | ||
tee "${GITHUB_WORKSPACE}/release-notes.md" | ||
working-directory: code | ||
|
||
- uses: actions/[email protected] | ||
|
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 @@ | ||
name: Close stale issues and PRs | ||
|
||
on: | ||
schedule: | ||
- cron: '0 19 * * *' | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run stale action | ||
uses: actions/[email protected] | ||
with: | ||
operations-per-run: 120 | ||
delete-branch: true | ||
days-before-close: 10 | ||
stale-issue-label: stale | ||
stale-pr-label: stale | ||
exempt-issue-labels: essential | ||
exempt-pr-labels: essential | ||
|
||
days-before-issue-stale: 260 | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
close-issue-message: > | ||
This issue has been automatically closed because it has not had | ||
recent activity. | ||
days-before-pr-stale: 20 | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
close-pr-message: > | ||
This pull request has been automatically closed because it has not had | ||
recent activity. |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.