Bump fsfe/reuse-action from 4 to 5 #902
Workflow file for this run
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
--- | |
# Copyright (c) Ansible Project | |
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause) | |
# SPDX-License-Identifier: BSD-2-Clause | |
name: Lint changelog fragments | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Run once per week (Friday at 07:00 UTC) | |
schedule: | |
- cron: '0 7 * * 5' | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install antsibull-changelog | |
- name: Lint changelog fragments | |
run: | | |
antsibull-changelog lint |