Skip to content

Commit e454a37

Browse files
authored
Revert "[ISSUE #1319]🔨Update Github Actions CI (#1320)" (#1325)
This reverts commit ba9a3b3.
1 parent ba9a3b3 commit e454a37

5 files changed

+5
-5
lines changed

.github/workflows/associate_milestone_issue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Associate Milestone
1414
uses: actions/github-script@v7
1515
with:
16-
github-token: ${{ secrets.BOT_TOKEN_1 }}
16+
github-token: ${{ secrets.BOT_TOKEN_1 }}
1717
script: |
1818
const { owner, repo } = context.repo;
1919
const issueNumber = context.issue.number;

.github/workflows/associate_milestone_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Associate Milestone
1414
uses: actions/github-script@v7
1515
with:
16-
github-token: ${{ secrets.BOT_TOKEN_1 }}
16+
github-token: ${{ secrets.BOT_TOKEN_1 }}
1717
script: |
1818
const { owner, repo } = context.repo;
1919
const issueNumber = context.issue.number;

.github/workflows/auto-comment-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Create a comment
1717
uses: actions/github-script@v7
1818
with:
19-
github-token: ${{ secrets.BOT_TOKEN }}
19+
github-token: ${{ secrets.BOT_TOKEN }}
2020
script: |
2121
const { owner, repo, number: issue_number } = context.issue;
2222

.github/workflows/remove-label-on-approve.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Remove multiple labels using github-script
1818
uses: actions/github-script@v7
1919
with:
20-
github-token: ${{ secrets.BOT_TOKEN }}
20+
github-token: ${{ secrets.BOT_TOKEN }}
2121
script: |
2222
const labelsToRemove = ['waiting-review','ready to review']; // Labels to remove
2323

.github/workflows/sync-issue-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Sync Labels from Linked Issue
1818
uses: actions/github-script@v7
1919
with:
20-
github-token: ${{ secrets.BOT_TOKEN_1 }}
20+
github-token: ${{ secrets.BOT_TOKEN_1 }}
2121
script: |
2222
// Extract linked issue numbers from the PR description
2323
const issueNumbers = context.payload.pull_request.body

0 commit comments

Comments
 (0)