This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
Upgrade #171264
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: Upgrade | |
on: | |
schedule: | |
- cron: '* * * * *' | |
workflow_dispatch: {} | |
jobs: | |
upgrade: | |
name: Upgrade | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Git Config | |
run: | | |
git config --global user.name github-actions[bot] | |
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | |
gh auth login --with-token <<< ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Upgrade | |
run: make continuous-upgrade |