Skip to content

[#568] Add GitHub action to verify the front matter metadata #3

[#568] Add GitHub action to verify the front matter metadata

[#568] Add GitHub action to verify the front matter metadata #3

Workflow file for this run

name: Check Proposals in pull requests
on:
pull_request:
jobs:
check-proposal:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Get all proposals files that have changed
id: changed-proposals
uses: tj-actions/changed-files@v44
with:
files: |
**/*.adoc
files_ignore: |
_*/**
index.adoc
design-doc-template.adoc
- name: Check files that have changed
if: steps.changed-proposals.outputs.any_changed == 'true'
env:
PROPOSAL_FILES: ${{ steps.changed-proposals.outputs.all_changed_files }}
run: |
echo "Check all proposals files that have changed: $PROPOSAL_FILES"
./.scripts/check_proposals $PROPOSAL_FILES