-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathautomation-data-api-differ.yaml
More file actions
56 lines (50 loc) · 2.18 KB
/
automation-data-api-differ.yaml
File metadata and controls
56 lines (50 loc) · 2.18 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
---
name: Detect changes to the API Definitions (Resource Manager)
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- 'api-definitions/**' # to detect changes when the API Definitions are updated
- 'scripts/automation-determine-changes-to-api-definitions.sh' # to handle changes to the script
- 'tools/data-api/**' # to detect changes when the Data API is updated
- 'tools/data-api-differ/**' # to detect changes when the Data API Differ is updated
jobs:
detect-changes-to-the-api-definitions:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
fetch-depth: 0
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version-file: ./.go-version
cache-dependency-path: |
tools/generator-go-sdk/go.mod
tools/data-api-differ/go.mod
tools/wrapper-automation/go.mod
tools/data-api/go.mod
tools/importer-msgraph-metadata/go.mod
tools/data-api-sdk/go.mod
tools/sdk/go.mod
tools/importer-rest-api-specs/go.mod
tools/data-api-repository/go.mod
tools/version-bumper/go.mod
tools/generator-terraform/go.mod
- name: Detect Changes
run: |
./scripts/automation-determine-changes-to-api-definitions.sh resource-manager outputs/
- name: Post Comment containing Breaking Changes
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
with:
filePath: outputs/resource-manager-breaking-changes.md
- name: Post Comment containing Changes
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
with:
filePath: outputs/resource-manager-changes.md
- name: Post Comment with New Static Identifiers
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
with:
filePath: outputs/resource-manager-static-identifiers.md