-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3296 from eseiler/infra/cpm
[INFRA] CPM find_package and package update cron
- Loading branch information
Showing
3 changed files
with
50 additions
and
8 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,32 @@ | ||
# SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin | ||
# SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
name: Update CPM | ||
|
||
on: | ||
schedule: | ||
- cron: "0 12 * * SAT" | ||
workflow_dispatch: | ||
|
||
env: | ||
TZ: Europe/Berlin | ||
|
||
concurrency: | ||
group: update-cpm-actions | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
update_cpm: | ||
name: Update CPM | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' | ||
steps: | ||
- name: Run update CPM | ||
uses: seqan/actions/update_cpm_package_lock@main | ||
with: | ||
token: ${{ secrets.SEQAN_ACTIONS_PAT }} | ||
gpg_key: ${{ secrets.SEQAN_ACTIONS_GPG_KEY }} | ||
gpg_passphrase: ${{ secrets.SEQAN_ACTIONS_GPG_PASSPHRASE }} | ||
package_lock_file: cmake/package-lock.cmake |
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
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