-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (34 loc) · 1.27 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
# --------------------------------------------------------------
# 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 }}-pr-all
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