2022-08-21 08:27:01 +02:00
|
|
|
---
|
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
name: Verify REUSE
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
2022-09-19 21:07:04 +02:00
|
|
|
pull_request_target:
|
|
|
|
types: [opened, synchronize, reopened]
|
2022-08-21 08:27:01 +02:00
|
|
|
branches: [main]
|
|
|
|
# Run CI once per day (at 07:30 UTC)
|
|
|
|
schedule:
|
|
|
|
- cron: '30 7 * * *'
|
|
|
|
|
|
|
|
jobs:
|
2022-08-21 11:35:27 +02:00
|
|
|
check:
|
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-08-21 08:27:01 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-12 06:41:43 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-19 21:07:04 +02:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha || '' }}
|
2022-08-21 08:27:01 +02:00
|
|
|
|
2024-01-18 07:11:10 +01:00
|
|
|
- name: REUSE Compliance Check
|
|
|
|
uses: fsfe/reuse-action@v2
|