-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (68 loc) · 2.44 KB
/
pr-update.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
name: "PR: Update"
on:
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- main
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: false
env:
HEAD_REF: ${{github.head_ref}}
BASE_REF: ${{github.base_ref}}
jobs:
info:
if: endsWith(github.repository , '-template')
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: startsWith(runner.name, 'buildagent-')
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Info"
uses: actions/[email protected]
with:
script: |
core.info('Branch: ${{env.HEAD_REF}}');
core.info('Base Branch: ${{env.BASE_REF}}');
core.info('Repo: ${{github.repository}}');
core.info('Owner: ${{github.repository_owner}}');
core.info('Assigned: ${{github.event.pull_request.assignee.login}}');
core.info('Assigned: ${{github.event.pull_request.assignees[0].login}}');
core.info('Last Modified By: ${{github.event.pull_request.head.user.login}}');
core.info('PR Creator: ${{github.event.pull_request.creator.login}}');
core.info('PR Owner: ${{github.event.pull_request.owner}}');
core.info('Actor: ${{github.actor}}');
add-pr-label:
if: ${{github.actor != 'dependabot[bot]'}}
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: startsWith(runner.name, 'buildagent-')
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Add Labels"
uses: actions/labeler@v5
with:
repo-token: ${{secrets.SOURCE_PUSH_TOKEN}}
configuration-path: .github/labeler.yml
sync-labels: true
assign-to-creator:
if: |-
${{!github.event.pull_request.assignee.login
&& github.event_name == 'pull_request'
&& ( github.event.action == 'opened' || github.event.action == 'reopened')
&& github.actor != 'dependabot[bot]'}}
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: startsWith(runner.name, 'buildagent-')
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Assign PR to the creator"
uses: thomaseizinger/[email protected]
with:
repo-token: ${{secrets.SOURCE_PUSH_TOKEN}}