-
Notifications
You must be signed in to change notification settings - Fork 51
82 lines (72 loc) · 2.54 KB
/
run_pre_merge.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Helpful YAML parser to clarify YAML syntax:
# https://yaml-online-parser.appspot.com/
name: Run Pre Merge
on:
pull_request:
# Triggered by default activities (synchronize, opened, reopened) + labeled.
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request
types: [labeled, synchronize, opened, reopened]
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
block-pr-merge:
name: Block GitHub PR Merge
runs-on: ubuntu-latest
steps:
- run: exit 1
check-ci-run-label:
name: Check ci:run label
runs-on: ubuntu-latest
steps:
- run: echo "Run on branch $BRANCH_NAME by $PR_AUTHOR"
env:
BRANCH_NAME: ${{ github.head_ref }}
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
- name: fail-without-ci_run
if: ${{ !((github.event.pull_request.user.login == 'copybara-service[bot]') || contains(github.event.pull_request.labels.*.name, 'ci:run')) }}
run: exit 1
remove-ci-run-label:
name: Remove ci:run label
runs-on: ubuntu-latest
needs: check-ci-run-label
steps:
- name: remove-cirun
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci:run') }}
uses: actions/github-script@v5
with:
script: |
github.rest.issues.removeLabel({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
name: 'ci:run'
})
continue-on-error: true
run-formatting:
name: Formatting
needs: remove-ci-run-label
uses: ./.github/workflows/formatting.yml
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}
run-generative-api-examples:
name: Generative API Examples
needs: remove-ci-run-label
uses: ./.github/workflows/generative_api_examples.yml
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}
run-unittests-python:
name: Unit Tests Python
needs: remove-ci-run-label
uses: ./.github/workflows/unittests_python.yml
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}
run-model-coverage:
name: Model Coverage
needs: remove-ci-run-label
if: contains(github.event.pull_request.labels.*.name, 'ci:model-coverage')
uses: ./.github/workflows/model_coverage.yml
secrets: inherit
with:
trigger-sha: ${{ github.event.pull_request.head.sha }}