cockpit-lib-update #25
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: cockpit-lib-update | |
on: | |
schedule: | |
- cron: '0 2 * * 4' | |
# can be run manually on https://github.com/cockpit-community/cockpit-mail/actions | |
workflow_dispatch: | |
jobs: | |
cockpit-lib-update: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Set up dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y make | |
- name: Set up configuration and secrets | |
run: | | |
printf '[user]\n\tname = Cockpit Project\n\temail=cockpituous@gmail.com\n' > ~/.gitconfig | |
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Run cockpit-lib-update | |
run: | | |
make bots | |
bots/cockpit-lib-update |