28 lines
744 B
YAML
28 lines
744 B
YAML
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
schedule:
|
||
|
- cron: '@hourly'
|
||
|
|
||
|
jobs:
|
||
|
check-community:
|
||
|
name: Check community repo
|
||
|
runs-on: x86_64
|
||
|
container:
|
||
|
image: alpine:latest
|
||
|
env:
|
||
|
downstream: https://dl-cdn.alpinelinux.org/alpine/edge/community
|
||
|
FORGEJO_TOKEN: ${{ secrets.forgejo_token }}
|
||
|
LABEL_NUMER: 4
|
||
|
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
|