DOCS-4174: Add MBWAY - MULTIBANCO testing information in docs. #1844
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: Check spelling on pull request | |
on: [pull_request] | |
jobs: | |
spellcheck: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
# The checkout step | |
- uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Get specific changed files | |
id: changed-files-specific | |
uses: tj-actions/changed-files@v25 | |
with: | |
files: | | |
content/**/*.md | |
api/**/*.md | |
sha: ${{ github.event.pull_request.head.sha }} | |
base_sha: ${{ github.event.pull_request.base.sha }} | |
fetch-depth: 0 | |
- name: List all changed files | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
run: | | |
echo "CHG_FILES=${{ steps.changed-files-specific.outputs.all_changed_files }}" >> $GITHUB_ENV | |
- name: Check which files changed | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
run : | | |
for file in content/payment-methods/unmatched-payments-dutch.md content/integrations/webshop-access-spanish.md content/integrations/webshop-access-ita.md content/payment-methods/unmatched-payments-german.md content/payment-methods/buy-now-pay-later.md content/payment-methods/credit-debit-cards.md content/integrations/our-integrations.md; do | |
if [[ "$CHG_FILES" =~ $file ]]; then | |
echo "$file needs to be removed" | |
CHG_FILES=$(echo $CHG_FILES | sed "s|$file||") | |
echo "CHG_FILES=$CHG_FILES" >> $GITHUB_ENV | |
fi | |
done | |
echo "Final list: $CHG_FILES" | |
- name: Run spellchecker on changed files | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: rojopolis/[email protected] | |
with: | |
source_files: ${{ env.CHG_FILES }} | |
task_name: markdown |