mirror of
https://github.com/chenasraf/flathub.git
synced 2026-05-18 01:39:06 +00:00
22 lines
471 B
YAML
22 lines
471 B
YAML
name: 'Check if external data changed across Flathub org'
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
flathub-data-checker-global:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 120
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: ./.github/actions/flatpak-external-data-checker
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.FLATHUBBOT_TOKEN }}
|