-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workflows: add flatpak x-checker (#392)
- Loading branch information
1 parent
c62f1f3
commit 222afbe
Showing
2 changed files
with
39 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Check for updates | ||
on: | ||
schedule: # for scheduling to work this file must be in the default branch | ||
- cron: "0 0 * * 1" # run weekly | ||
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab | ||
|
||
jobs: | ||
flatpak-external-data-checker: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest | ||
env: | ||
GIT_AUTHOR_NAME: elementaryBot | ||
GIT_COMMITTER_NAME: elementaryBot | ||
GIT_AUTHOR_EMAIL: builds@elementary.io | ||
GIT_COMMITTER_EMAIL: builds@elementary.io | ||
EMAIL: builds@elementary.io | ||
GITHUB_TOKEN: ${{ secrets.GIT_USER_TOKEN }} | ||
with: | ||
args: --update --never-fork io.elementary.tasks.json |
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