Skip to content

Commit

Permalink
Fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jun 17, 2022
1 parent 4cf3b44 commit 719cd3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-django-stubs-ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: tagName,
name: `Release of ${tagName} failed`,
name: `Release ${tagName}`,
generate_release_notes: true,
});
Expand All @@ -72,6 +72,6 @@ jobs:
await github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: `Release failure on ${new Date().toDateString()}`,
body: `Details: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/workflows/release.yml`,
title: `Release of django-stubs-ext failure on ${new Date().toDateString()}`,
body: `Details: https://github.com/typeddjango/django-stubs/actions/workflows/release-django-stubs-ext.yml`,
})
6 changes: 3 additions & 3 deletions .github/workflows/release-django-stubs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: tagName,
name: `Release of ${tagName} failed`,
name: `Release ${tagName}`,
generate_release_notes: true,
});
Expand All @@ -71,6 +71,6 @@ jobs:
await github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: `Release failure on ${new Date().toDateString()}`,
body: `Details: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/workflows/release.yml`,
title: `Release of django-stubs failure on ${new Date().toDateString()}`,
body: `Details: https://github.com/typeddjango/django-stubs/actions/workflows/release-django-stubs.yml`,
})

0 comments on commit 719cd3a

Please sign in to comment.