Check for updates #10189
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: Check for updates | |
on: | |
schedule: | |
- cron: "0 * * * *" # run every hour | |
workflow_dispatch: | |
jobs: | |
flatpak-external-data-checker: | |
runs-on: ubuntu-latest | |
container: ghcr.io/flathub/flatpak-external-data-checker:latest | |
strategy: | |
matrix: | |
branch: [ main ] # list all branches to check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
# The f-e-d-c safe.directory handling is currently broken when the | |
# manifest is in a subdirectory, so it has to be handled outside | |
# of the checker. | |
# | |
# https://github.com/flathub/flatpak-external-data-checker/issues/386 | |
- name: Mark git checkout safe | |
run: | | |
git config --global --add safe.directory "$PWD" | |
- name: Run flatpak-external-data-checker | |
env: | |
GIT_AUTHOR_NAME: Flatpak External Data Checker | |
GIT_COMMITTER_NAME: Flatpak External Data Checker | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_EMAIL: [email protected] | |
EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
working-directory: build-aux/flatpak | |
run: | | |
/app/flatpak-external-data-checker --update --verbose --never-fork \ | |
org.endlessos.Key.Devel.json |