-
Notifications
You must be signed in to change notification settings - Fork 81
43 lines (39 loc) · 1.35 KB
/
check_process.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Check Proposals
on:
pull_request_target:
jobs:
check-proposals:
runs-on: ubuntu-latest
permissions:
contents: read # to download a workflow artifact
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: "refs/pull/${{ github.event.number }}/merge"
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
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:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PROPOSAL_FILES: ${{ steps.changed-proposals.outputs.all_changed_files }}
PR_NUMBER: ${{ github.event.number }}
run: |
echo "Check all proposals files that have changed: $PROPOSAL_FILES"
./.scripts/check_proposals $PR_NUMBER $PROPOSAL_FILES