-
Notifications
You must be signed in to change notification settings - Fork 18
51 lines (49 loc) · 1.35 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
name: PR Build
on:
pull_request:
branches:
- '*'
concurrency: pr-${{ github.ref }}
jobs:
prebuild:
name: Pre build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Check Rust styles
run: cargo fmt --check
working-directory: src
build-windows:
name: Build
uses: ./.github/workflows/ci-windows.yml
needs: prebuild
build-linux:
name: Build
uses: ./.github/workflows/ci-linux.yml
needs: prebuild
build-mac:
name: Build
uses: ./.github/workflows/ci-mac.yml
needs: prebuild
postbuild:
name: Post build
runs-on: ubuntu-latest
needs: [build-windows, build-linux, build-mac]
permissions:
pull-requests: write
steps:
- name: Install Python modules
run: pip install PyGithub
- name: Update PR
run: |
from github import Auth, Github
author = "${{ github.event.pull_request.head.user.login }}"
head = "${{ github.event.pull_request.head.sha }}"
gh = Github(auth=Auth.Token("${{ secrets.GITHUB_TOKEN }}"))
repo = gh.get_repo("${{ github.repository }}")
cmp = repo.compare("${{ github.base_ref }}", f"{author}:{head}")
if cmp.status != "behind":
pull = repo.get_pull(${{ github.event.number }})
pull.add_to_labels("S-ready")
shell: python