-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (45 loc) · 1.74 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
# --------------------------------------------------------------
# WARNING: This file is managed by centralized sync management system.
# Do not edit this file directly, your changes will be overwritten.
# See https://github.com/orange-cloudavenue/workflows for more information.
# --------------------------------------------------------------
name: PR All events
on:
pull_request_target:
types: [ opened, reopened, synchronize ]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-changelog
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
jobs:
changelog-dependabot:
name: "Changelog Dependabot"
uses: orange-cloudavenue/workflows/.github/workflows/changelog_dependabot.yml@main
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
pr-size:
name: "PR Size"
uses: orange-cloudavenue/workflows/.github/workflows/pr_label_size.yml@main
secrets:
TOKEN: ${{ secrets.CHANGELOG_PAT }}
pr-conventional-commits:
name: "Conventional Commits"
uses: orange-cloudavenue/workflows/.github/workflows/pr_conventional_commits.yml@main
secrets:
TOKEN: ${{ secrets.CHANGELOG_PAT }}
pr-license:
name: "License Check"
uses: orange-cloudavenue/workflows/.github/workflows/pr_license.yml@main
golang-ci-lint:
name: "Lint"
uses: orange-cloudavenue/workflows/.github/workflows/go_golangci-lint.yml@main
tests:
name: "Unit Tests"
uses: orange-cloudavenue/workflows/.github/workflows/go_unit-test-tf-provider.yml@main
secrets:
CLOUDAVENUE_ORG: ${{ secrets.CLOUDAVENUE_ORG }}
CLOUDAVENUE_USER: ${{ secrets.CLOUDAVENUE_USER }}
CLOUDAVENUE_PASSWORD: ${{ secrets.CLOUDAVENUE_PASSWORD }}
CLOUDAVENUE_VDC: ${{ secrets.CLOUDAVENUE_VDC }}