Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
token: ${{ secrets.AUTOMATION_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -30,4 +30,4 @@ jobs:
- name: Run semantic-release
run: npm --prefix .github/release exec -- semantic-release --extends ./.github/release/releaserc.json
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.AUTOMATION_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/sync-develop-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Checkout full history
uses: actions/checkout@v4
with:
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
token: ${{ secrets.AUTOMATION_TOKEN }}
fetch-depth: 0

- name: Configure git identity
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Open PR on conflict
if: steps.check.outputs.already_synced == 'false' && (steps.merge.outputs.conflict == 'true' || steps.push_merged.outputs.push_failed == 'true')
env:
GH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
GH_TOKEN: ${{ secrets.AUTOMATION_TOKEN }}
run: |
PR_BRANCH="auto-sync/${{ env.SOURCE_BRANCH }}-to-${{ env.TARGET_BRANCH }}"
REASON="merge conflict"
Expand Down
Loading