forked from Pycord-Development/pycord
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (26 loc) · 784 Bytes
/
pr-checks.yml
File metadata and controls
30 lines (26 loc) · 784 Bytes
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
name: "Pull Request Checks"
on:
workflow_dispatch:
pull_request_target:
types: [opened, synchronize, reopened, edited]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: write-all
jobs:
pr-dependencies:
runs-on: ubuntu-latest
name: "Check PR Dependencies"
steps:
- name: PR Dependency Check
uses: gregsdennis/dependencies-action@v1.4.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
semantic-title:
name: "Check Semantic Title"
runs-on: ubuntu-latest
steps:
- name: "Check Semantic Pull Request"
uses: amannn/action-semantic-pull-request@v5.5.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}