Skip to content

Commit 97c7d0f

Browse files
authored
Merge 8f34cb7 into f5e2b02
2 parents f5e2b02 + 8f34cb7 commit 97c7d0f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/update_changelog.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
TYPE="${{ github.event.inputs.type }}"
4040
START="${{ github.event.inputs.start }}"
4141
BRANCH="${GITHUB_REF_NAME}"
42-
42+
echo `gh auth status`
4343
echo "::notice:: branch = ${GITHUB_REF_NAME}, start = $START"
4444
4545
if [ "$TYPE" == "date" ]; then
@@ -82,11 +82,14 @@ jobs:
8282
steps:
8383
- name: Check out the repository
8484
uses: actions/checkout@v4
85-
85+
- name: Debug token
86+
run: |
87+
echo `gh auth status`
8688
- name: Update Changelog
8789
uses: ./.github/actions/update_changelog
8890
env:
8991
YDBOT_TOKEN: ${{ secrets.YDBOT_TOKEN }}
92+
GH_TOKEN: ${{ secrets.YDBOT_TOKEN }}
9093
with:
9194
pr_data: "${{ needs.gather-prs.outputs.prs }}"
9295
changelog_path: "${{ github.event.inputs.changelog_path }}"

.github/workflows/weekly_update_changelog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- cron: '0 0 * * 0' # Every Sunday at 00:00
66
branches:
77
- main
8+
- stable-*
89
workflow_dispatch:
910
env:
1011
GH_TOKEN: ${{ secrets.YDBOT_TOKEN }}
@@ -63,6 +64,7 @@ jobs:
6364
uses: ./.github/actions/update_changelog
6465
env:
6566
YDBOT_TOKEN: ${{ secrets.YDBOT_TOKEN }}
67+
GH_TOKEN: ${{ secrets.YDBOT_TOKEN }}
6668
with:
6769
pr_data: "${{ needs.gather-prs.outputs.prs }}"
6870
changelog_path: "./CHANGELOG.md" # RODO: Use the correct path to your CHANGELOG.md file

0 commit comments

Comments
 (0)