Skip to content

Commit

Permalink
Revert "fix?"
Browse files Browse the repository at this point in the history
This reverts commit 8b55179.
  • Loading branch information
Schrodinger71 committed Oct 27, 2024
1 parent 8b55179 commit c7305b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/auto-cl-update-atd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Run post-merge script
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GIT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python Tools/ADT/auto_cl.py "${{ secrets.PAT_CL_TOKEN }}" "${{ github.repository }}"

- name: Configure Git
Expand All @@ -60,15 +60,15 @@ jobs:
- name: Push changes to a new branch
if: steps.commit-changes.outcome == 'success'
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GIT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push https://x-access-token:${{ secrets.TOKEN_GIT }}@github.com/${{ github.repository }} update-changelog --force
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} update-changelog --force
- name: Create Pull Request
if: steps.commit-changes.outcome == 'success'
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.TOKEN_GIT }}
token: ${{ secrets.GITHUB_TOKEN }}
base: master
branch: update-changelog
commit-message: "Auto cl update"
Expand Down

0 comments on commit c7305b4

Please sign in to comment.