Housekeeping tasks #1022
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: Housekeeping tasks | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
jobs: | |
squash_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set credentials | |
run: | | |
git config --global user.name 'Vicente Adolfo Bolea Sanchez' | |
git config --global user.email '[email protected]' | |
- name: Run squash-branch script | |
run: ./scripts/squash-branch |