Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Release Notes July 2024 #310

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Collect Release Notes
on:
workflow_dispatch

workflow_dispatch: {}
schedule:
- cron: '0 6 * * 1' # every Monday at 6:00 AM
env:
MINORS: "v1.27 v1.28 v1.29 v1.30"
permissions:
Expand All @@ -24,11 +25,12 @@ jobs:
run: scripts/collect-all-release-notes.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install codespell and run spell check
- name: Install codespell
run: |
python -m pip install --upgrade pip
pip install codespell
codespell
- name: Run codespell
run: codespell
- name: Get current month and year
id: date
run: echo "::set-output name=month_year::$(date +'%B %Y')"
Expand Down
Loading
Loading