Skip to content

Commit ac9b6fa

Browse files
committed
Disable release notes for now
1 parent 087bf14 commit ac9b6fa

File tree

2 files changed

+47
-38
lines changed

2 files changed

+47
-38
lines changed

.github/workflows/releases.yml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -79,41 +79,41 @@ jobs:
7979
bash ./bin/release.sh v${{ steps.version.outputs.version }}
8080
script_stop: true
8181

82-
- name: Generate release notes
83-
id: generated-notes
84-
uses: RedCrafter07/release-notes-action@main
85-
with:
86-
tag-name: v${{ steps.version.outputs.version }}
87-
token: ${{ secrets.GITHUB_TOKEN }}
88-
branch: ${{ github.ref_name }}
89-
90-
- name: Cleanup release notes
91-
id: cleaned-notes
92-
run: |
93-
RELEASE_NOTES=$(echo $RELEASE_NOTES | sed '/## What/d')
94-
RELEASE_NOTES=$(echo $RELEASE_NOTES | sed '/## New Contributors/,$d')
95-
echo "notes=${RELEASE_NOTES}" >> "$GITHUB_OUTPUT"
96-
env:
97-
RELEASE_NOTES: ${{ steps.generated-notes.outputs.release-notes }}
98-
99-
- name: Create release
100-
uses: softprops/action-gh-release@v2
101-
env:
102-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103-
with:
104-
tag_name: v${{ steps.version.outputs.version }}
105-
name: v${{ steps.version.outputs.version }}
106-
body: ${{ steps.cleaned-notes.outputs.notes }}
107-
target_commitish: ${{ github.ref_name }}
108-
make_latest: 'legacy'
109-
110-
update-changelog:
111-
needs: release
112-
113-
name: Update changelog
114-
115-
uses: laravel/.github/.github/workflows/update-changelog.yml@main
116-
with:
117-
branch: ${{ github.ref_name }}
118-
version: "v${{ needs.release.outputs.version }}"
119-
notes: ${{ needs.release.outputs.notes }}
82+
# - name: Generate release notes
83+
# id: generated-notes
84+
# uses: RedCrafter07/release-notes-action@main
85+
# with:
86+
# tag-name: v${{ steps.version.outputs.version }}
87+
# token: ${{ secrets.GITHUB_TOKEN }}
88+
# branch: ${{ github.ref_name }}
89+
90+
# - name: Cleanup release notes
91+
# id: cleaned-notes
92+
# run: |
93+
# RELEASE_NOTES=$(echo $RELEASE_NOTES | sed '/## What/d')
94+
# RELEASE_NOTES=$(echo $RELEASE_NOTES | sed '/## New Contributors/,$d')
95+
# echo "notes=${RELEASE_NOTES}" >> "$GITHUB_OUTPUT"
96+
# env:
97+
# RELEASE_NOTES: ${{ steps.generated-notes.outputs.release-notes }}
98+
99+
# - name: Create release
100+
# uses: softprops/action-gh-release@v2
101+
# env:
102+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103+
# with:
104+
# tag_name: v${{ steps.version.outputs.version }}
105+
# name: v${{ steps.version.outputs.version }}
106+
# body: ${{ steps.cleaned-notes.outputs.notes }}
107+
# target_commitish: ${{ github.ref_name }}
108+
# make_latest: 'legacy'
109+
110+
# update-changelog:
111+
# needs: release
112+
113+
# name: Update changelog
114+
115+
# uses: laravel/.github/.github/workflows/update-changelog.yml@main
116+
# with:
117+
# branch: ${{ github.ref_name }}
118+
# version: "v${{ needs.release.outputs.version }}"
119+
# notes: ${{ needs.release.outputs.notes }}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: update changelog
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
update:
9+
uses: laravel/.github/.github/workflows/update-changelog.yml@main

0 commit comments

Comments
 (0)