chore(deps): update anthropics/claude-code-action digest to 0d19335 #1275
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Mirroring | |
| on: [push, delete] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| jobs: | |
| GitLab: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code. | |
| run: git clone --mirror "https://github.com/${GITHUB_REPOSITORY}.git" "${GITHUB_WORKSPACE}" | |
| - name: Mirroring. | |
| run: git push --mirror "https://oauth2:${{ secrets.GITLAB_PERSONAL_ACCESS_TOKEN }}@gitlab.com/DeveloperC/${{ github.event.repository.name }}" |