Update revisions #1382
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: Update revisions | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "45 */6 * * *" | |
push: | |
paths: | |
- "**/update.sh" | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
container: | |
image: "registry.fedoraproject.org/fedora-minimal:latest" | |
steps: | |
- name: Prepare | |
run: | | |
microdnf -y install --nodocs --setopt=install_weak_deps=0 \ | |
make git-core rpm-build curl perl-interpreter jq rpmdevtools copr-cli parallel libxml2 | |
- name: Copr config | |
env: | |
COPR_CONF: ${{ secrets.COPR_CONFIG }} | |
run: | | |
mkdir -p ~/.config | |
echo "$COPR_CONF" > ~/.config/copr | |
- uses: actions/checkout@v4 | |
- name: Run updater | |
env: | |
GOTIFY_URL: ${{ secrets.GOTIFY_URL }} | |
GOTIFY_APP_TOKEN: ${{ secrets.GOTIFY_APP_TOKEN }} | |
run: | | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
# From https://api.github.com/users/github-actions%5Bbot%5D | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
find -name "update.sh" -execdir {} \; | |
- uses: gautamkrishnar/keepalive-workflow@v1 |