-
Notifications
You must be signed in to change notification settings - Fork 125
64 lines (52 loc) · 2.07 KB
/
pr.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Open API PR check
on:
pull_request:
paths:
- '**'
jobs:
pr-health-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install yaml lint
run: pip install yamllint
- name: Run yamllint
run: |
git checkout ${{github.head_ref}}
find . -type f \( - name "*.yaml" \) > yaml_files.txt
if [ -s yaml_files.txt ]; then
echo "linting the following yaml files:"
cat yaml_files.txt
xargs yamllint < yaml_files.txt
fi
# - name: Checkout codegen repo
# uses: actions/checkout@v4
# with:
# repository: xero-internal/xeroapi-sdk-codegen
# path: xeroapi-sdk-codegen
# - name: Install octokit dependencies
# run: npm i
# working-directory: xeroapi-sdk-codegen/.github/octokit
# - name: Get github app access token
# id: get_access_token
# env:
# GITHUB_APP_ID: ${{ secrets.XERO_GITHUB_APP_ID }}
# GITHUB_APP_PRIVATE_KEY: ${{ secrets.XERO_GITHUB_APPLICATION_KEY }}
# uses: actions/github-script@v7
# with:
# result-encoding: string
# script: |
# const { getAccessToken } = await import('${{ github.workspace }}/xeroapi-sdk-codegen/.github/octokit/index.js')
# const token = await getAccessToken()
# return token
# - name: Checkout xero-node repo
# uses: actions/checkout@v4
# with:
# repository: XeroAPI/xero-node
# path: xero-node
# token: ${{steps.get_access_token.outputs.result}}