You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/changelog.yml
+6-9
Original file line number
Diff line number
Diff line change
@@ -27,20 +27,17 @@ jobs:
27
27
# towncrier needs a non-shallow clone
28
28
fetch-depth: '0'
29
29
30
-
- name: Set up environment
31
-
uses: ./.github/actions/setup-env
30
+
- name: Bootstrap disnake-compass
31
+
uses: ./.github/actions/bootstrap
32
32
with:
33
-
python-version: '3.9'
33
+
python-version: '3.10'
34
34
35
-
- name: Install dependencies
36
-
run: pdm install -dG changelog
37
-
38
-
- name: Check for presence of a Change Log fragment (only pull requests)
35
+
- name: Check for presence of a changelog fragment (only pull requests)
39
36
# NOTE: The pull request' base branch needs to be fetched so towncrier
40
37
# is able to compare the current branch with the base branch.
41
38
run: |
42
-
if ! pdm run towncrier check --compare-with origin/${BASE_BRANCH}; then
43
-
echo "::error::Please see https://github.com/DisnakeCommunity/disnake-compass/blob/master/changelog/README.rst for details on how to create a changelog entry." >&2
39
+
if ! poetry run towncrier check --compare-with origin/${BASE_BRANCH}; then
40
+
echo "::error::Please see https://github.com/DisnakeCommunity/disnake-compass/blob/master/changelog/README.md for details on how to create a changelog entry." >&2
0 commit comments