-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for xsf#1240: Integrate XEP validation in CI
Adds a Github workflow that executes `tools/validate-xep0001-conformance.sh` against any changed XEP that was changed in a pull request, leaving a comment that describes the validation result.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 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,45 @@ | ||
name: XEP validation | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: Test changed-files | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Detect changes to XEP files. | ||
id: changed-xeps | ||
uses: tj-actions/changed-files@v34 | ||
with: | ||
files: | | ||
xep-*.xml | ||
inbox/* | ||
- name: Run step if any file(s) in the docs folder change. | ||
id: validation | ||
if: steps.changed-xeps.outputs.any_changed == 'true' | ||
run: | | ||
result=Success | ||
for xep in "${{ steps.changed-xeps.outputs.all_changed_files }}"; do | ||
if ! tools/validate-xep0001-conformance.sh "$xep"; then | ||
result=Failure | ||
echo "validate_$xep=success" >> $GITHUB_OUTPUT | ||
else | ||
echo "validate_$xep=failure" >> $GITHUB_OUTPUT | ||
fi | ||
done | ||
echo "result=$result" >> $GITHUB_OUTPUT | ||
- uses: mshick/add-pr-comment@v2 | ||
if: steps.changed-files-specific.outputs.any_changed == 'true' | ||
with: | ||
issue: ${{ steps.validation.outputs.result }} | ||
message: | | ||
Automated XEP validation result: ${{ steps.validation.outputs.result }} |