2025-01-08 14:33:01 +01:00
|
|
|
# yamllint disable-line rule:line-length
|
|
|
|
# SPDX-FileCopyrightText: 2024 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
2024-05-15 01:23:11 +02:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
---
|
|
|
|
name: Cron
|
|
|
|
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
schedule:
|
2024-05-15 11:02:56 +02:00
|
|
|
- cron: "0 0 1,15 * *"
|
2024-05-15 01:23:11 +02:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{ github.ref }}-10
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pgp-expiration-check:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
2025-01-08 14:33:01 +01:00
|
|
|
runs-on: ubuntu-24.04
|
2024-05-15 01:23:11 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Discover keys that are expired or close to expiration date
|
2024-07-11 15:25:51 +02:00
|
|
|
run: scripts/pgp-lint.sh
|