-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (36 loc) · 1.33 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
# --------------------------------------------------------------
# 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:
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 }}
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.yml@main