Skip to content

Commit

Permalink
Run spellcheck before attempting to open a PR on release notes
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
dereknola committed Jul 1, 2024
1 parent c89be5c commit b1804da
Show file tree
Hide file tree
Showing 5 changed files with 201 additions and 194 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python 🐍
uses: actions/setup-python@v5
- name: Remove old release notes
run: |
for minor in $MINORS; do
Expand All @@ -22,6 +24,11 @@ jobs:
run: scripts/collect-all-release-notes.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install codespell and run spell check
run: |
python -m pip install --upgrade pip
pip install codespell
codespell
- name: Get current month and year
id: date
run: echo "::set-output name=month_year::$(date +'%B %Y')"
Expand Down
Loading

0 comments on commit b1804da

Please sign in to comment.