a531f0da37
For now script will just check package updates each 6 hours and print them to console. Nothing will be built/pushed. Functionality will be extended gradually.
18 lines
342 B
YAML
18 lines
342 B
YAML
name: Package updates
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */6 * * *'
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v2
|
|
- name: Process package updates
|
|
env:
|
|
GITHUB_API_TOKEN: ${{ secrets.GH_API_KEY }}
|
|
run: |
|
|
bash ./scripts/updates/check-updates.sh
|