Bump @types/react from 18.0.16 to 18.2.25 (#132) #415
This file contains 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: Push to mirror | |
on: | |
push: | |
branches: | |
- main | |
repository_dispatch: | |
types: [sample_push] | |
workflow_dispatch: | |
jobs: | |
mirror: | |
runs-on: ubuntu-latest | |
steps: | |
- name: push folder | |
uses: actions/checkout@v2 | |
env: | |
ACCESS_TOKEN: '${{ secrets.ACCESS_TOKEN }}' | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Angelo Gulina" | |
git config --global credential.helper cache | |
git clone https://${{secrets.ACCESS_TOKEN}}@github.com/angelogulina/indecis-it-mirror | |
rsync -av . --exclude indecis-it-mirror --exclude .git --exclude .github ./indecis-it-mirror | |
cd indecis-it-mirror | |
git add . | |
git commit --allow-empty -m "[GHA] [mirror] $(date)" | |
git push |