Update tags #34
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: Update tags | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
update-tags: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up GitHub Actions Bot | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "GitHub Actions Bot" | |
- name: Run update script | |
env: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
run: | | |
git clone https://github-actions[bot]:${GH_PAT}@github.com/ensae-reproductibilite/application-correction.git | |
cd application-correction | |
git clone https://github.com/ensae-reproductibilite/application-correction-admin.git admin | |
./admin/update-tags.sh |