29 lines
768 B
YAML
29 lines
768 B
YAML
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
schedule:
|
||
|
- cron: '0 5 * * *'
|
||
|
|
||
|
jobs:
|
||
|
check-r4.2:
|
||
|
name: Check user repo
|
||
|
runs-on: x86_64
|
||
|
container:
|
||
|
image: alpine:latest
|
||
|
env:
|
||
|
downstream: https://ayakael.net/api/packages/forge/alpine/edge/qubes-r4.2
|
||
|
FORGEJO_TOKEN: ${{ secrets.forgejo_token }}
|
||
|
LABEL_NUMBER: 9
|
||
|
CHECK_LATEST: 0
|
||
|
steps:
|
||
|
- name: Environment setup
|
||
|
run: apk add grep coreutils gawk curl wget bash nodejs git jq sed
|
||
|
- name: Get scripts
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 1
|
||
|
- name: Check out-of-date packages
|
||
|
run: ${{ github.workspace }}/.forgejo/bin/check_ver.sh
|
||
|
- name: Create issues
|
||
|
run: ${{ github.workspace }}/.forgejo/bin/create_issue.sh
|