-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 2.15 KB
/
pull_request.yml
File metadata and controls
76 lines (64 loc) · 2.15 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
name: pull_request
on: [pull_request, workflow_dispatch]
permissions:
pull-requests: write
contents: read
jobs:
validate_schemas:
name: validate schemas
runs-on: ubuntu-latest
steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v6
- name: Init nodejs
uses: ./.github/actions/init-npm
- name: Run the validations
run: npm run validate
check_for_changed_files:
name: check for changed schemas
runs-on: ubuntu-latest
steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: '0'
- name: Init nodejs
uses: ./.github/actions/init-npm
- name: Run the validations
run: npm run check-files-changed
upload_package:
needs: [validate_schemas, check_for_changed_files]
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v6
- name: Init nodejs
uses: ./.github/actions/init-npm
- name: Pack the package
run: npm pack
- name: get properties
id: json_properties
uses: ActionsTools/read-json-action@main
with:
file_path: 'package.json'
- uses: azure/CLI@v2
with:
inlineScript: |
az storage blob upload --name schemas-$GITHUB_SHA.tgz --account-name ghatmpstorage --container-name=npm-packages --file map-colonies-schemas-${{steps.json_properties.outputs.version}}.tgz --sas-token "${{ secrets.SAS_TOKEN }}"
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v3
with:
message: |
Hi it is me, your friendly bot helper! :wave:
I've packed this commit for you :blush:
You can install it like this:
```json
{
"dependencies": {
"@map-colonies/schemas": "https://ghatmpstorage.blob.core.windows.net/npm-packages/schemas-${{ github.sha }}.tgz"
}
}
```
The link will expire in a week :hourglass: