experimental: new roles for APEX und ORDS #396
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
name: antsibull changelog files | |
on: | |
pull_request: | |
branches: | |
- master | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Test changed-files | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get changelog files | |
id: changelog-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: | | |
changelogs/** | |
- name: List all changed files | |
run: | | |
for file in ${{ steps.changelog-files.outputs.all_changed_files }}; do | |
echo "antsibull changelog file found: $file" | |
exit 0 | |
done | |
echo "antsibull changelog files missing!" | |
exit 1 |