47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
name: 'Cycle Check'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 18 * * *'
|
|
|
|
jobs:
|
|
cycles:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: 'ghcr.io/void-linux/xbps-src-masterdir:20210313rc01-x86_64-musl'
|
|
steps:
|
|
- name: Prepare container
|
|
run: |
|
|
# Sync and upgrade once, assume error comes from xbps update
|
|
xbps-install -Syu || xbps-install -yu xbps
|
|
# Upgrade again (in case there was a xbps update)
|
|
xbps-install -yu
|
|
# Install script dependencies
|
|
xbps-install -y python3-networkx github-cli
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Create hostrepo and prepare masterdir
|
|
run: |
|
|
ln -s "$(pwd)" /hostrepo &&
|
|
common/travis/set_mirror.sh &&
|
|
common/travis/prepare.sh
|
|
- name: Find cycles and open issues
|
|
run: |
|
|
if command -v chroot-git >/dev/null 2>&1; then
|
|
GIT_CMD=$(command -v chroot-git)
|
|
elif command -v git >/dev/null 2>&1; then
|
|
GIT_CMD=$(command -v git)
|
|
fi
|
|
# required by git 2.35.2+
|
|
$GIT_CMD config --global --add safe.directory "$PWD"
|
|
common/scripts/xbps-cycles.py | tee cycles
|
|
grep 'Cycle:' cycles | while read -r line; do
|
|
if gh issue list -R "$GITHUB_REPOSITORY" -S "$line" | grep .; then
|
|
printf "Issue on '%s' already exists.\n" "$line"
|
|
else
|
|
gh issue create -R "$GITHUB_REPOSITORY" -b '' -t "$line"
|
|
fi
|
|
done
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }}
|