File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 39
39
TYPE="${{ github.event.inputs.type }}"
40
40
START="${{ github.event.inputs.start }}"
41
41
BRANCH="${GITHUB_REF_NAME}"
42
-
42
+ echo `gh auth status`
43
43
echo "::notice:: branch = ${GITHUB_REF_NAME}, start = $START"
44
44
45
45
if [ "$TYPE" == "date" ]; then
@@ -82,11 +82,14 @@ jobs:
82
82
steps :
83
83
- name : Check out the repository
84
84
uses : actions/checkout@v4
85
-
85
+ - name : Debug token
86
+ run : |
87
+ echo `gh auth status`
86
88
- name : Update Changelog
87
89
uses : ./.github/actions/update_changelog
88
90
env :
89
91
YDBOT_TOKEN : ${{ secrets.YDBOT_TOKEN }}
92
+ GH_TOKEN : ${{ secrets.YDBOT_TOKEN }}
90
93
with :
91
94
pr_data : " ${{ needs.gather-prs.outputs.prs }}"
92
95
changelog_path : " ${{ github.event.inputs.changelog_path }}"
Original file line number Diff line number Diff line change 5
5
- cron : ' 0 0 * * 0' # Every Sunday at 00:00
6
6
branches :
7
7
- main
8
+ - stable-*
8
9
workflow_dispatch :
9
10
env :
10
11
GH_TOKEN : ${{ secrets.YDBOT_TOKEN }}
63
64
uses : ./.github/actions/update_changelog
64
65
env :
65
66
YDBOT_TOKEN : ${{ secrets.YDBOT_TOKEN }}
67
+ GH_TOKEN : ${{ secrets.YDBOT_TOKEN }}
66
68
with :
67
69
pr_data : " ${{ needs.gather-prs.outputs.prs }}"
68
70
changelog_path : " ./CHANGELOG.md" # RODO: Use the correct path to your CHANGELOG.md file
You can’t perform that action at this time.
0 commit comments