Skip to content

Commit

Permalink
Rename changelog references to release notes
Browse files Browse the repository at this point in the history
All other references are release note so let's keep it consistent to
avoid confusion.
  • Loading branch information
Kyle-Verhoog committed Aug 27, 2024
1 parent 8758498 commit c0f1c54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Changelog
name: Release notes
on:
push:
branches:
- master
pull_request:
# Important that we run on `labeled` and `unlabeled` to pick up `changelog/no-changelog` being added/removed
# Important that we run on `labeled` and `unlabeled` to pick up `no-releasenote` being added/removed
# DEV: [opened, reopened, synchronize] is the default
types: [opened, reopened, synchronize, labeled, unlabeled, ready_for_review]
jobs:
validate:
name: Validate changelog
name: Validate release notes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -18,12 +18,12 @@ jobs:
fetch-depth: 0

# Ensure a new reno release note was added in this PR.
# Use `reno new <slug>` to add a new note to `releasenotes/notes`,
# or add `changelog/no-changelog` label if no release note is needed.
# Use `reno new <slug>` to add a new note to `no-releasenote`,
# or add `no-releasenote` label if no release note is needed.
- name: Ensure release note added
# Only run this on pull requests
if: github.event_name == 'pull_request'
run: scripts/check-releasenotes
run: releasenotes/check-releasenotes

- uses: actions/setup-python@v2
name: Install Python
Expand All @@ -33,5 +33,5 @@ jobs:
- name: Install Dependencies
run: pip install reno docutils

- name: Lint changelog notes
- name: Lint release notes
run: reno lint
File renamed without changes.

0 comments on commit c0f1c54

Please sign in to comment.