2022-10-08 12:30:28 +00:00
|
|
|
name: Check for updates
|
|
|
|
on:
|
|
|
|
schedule: # for scheduling to work this file must be in the default branch
|
2024-07-10 00:09:05 +00:00
|
|
|
- cron: "30 0 * * 5"
|
2022-10-08 12:30:28 +00:00
|
|
|
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
flatpak-external-data-checker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-03-04 11:02:59 +00:00
|
|
|
|
2022-10-08 12:30:28 +00:00
|
|
|
- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest
|
|
|
|
env:
|
|
|
|
GIT_AUTHOR_NAME: Flatpak External Data Checker
|
|
|
|
GIT_COMMITTER_NAME: Flatpak External Data Checker
|
|
|
|
# email sets "github-actions[bot]" as commit author, see https://github.community/t/github-actions-bot-email-address/17204/6
|
|
|
|
GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2023-03-05 13:59:56 +00:00
|
|
|
entrypoint: /bin/sh
|
|
|
|
args: -c "git config --global --add safe.directory /github/workspace && cd /github/workspace && /app/flatpak-external-data-checker --update --never-fork net.rpcs3.RPCS3.yaml"
|