-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.yml
More file actions
44 lines (41 loc) · 1.46 KB
/
build.yml
File metadata and controls
44 lines (41 loc) · 1.46 KB
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
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Start an SSH server on failure.'
required: false
default: false
issue_comment:
types: [created]
jobs:
# Regular build job for push/PR/workflow_dispatch events
build:
if: github.event_name != 'issue_comment'
uses: linuxmint/github-actions/.github/workflows/do-builds.yml@master
with:
commit_id: master
############################## Comma separated list - like 'linuxmint/xapp, linuxmint/cinnamon-desktop'
dependencies:
############################## Comma separated lists of words and files to have codespell ignore.
codespell_ignore_words_list:
codespell_ignore_files_list:
# Generate test packages when /generate-test-packages is commented on a PR
generate-test-packages:
if: github.event_name == 'issue_comment' && github.event.issue.pull_request
uses: linuxmint/github-actions/.github/workflows/generate-test-packages.yml@master
secrets: inherit
with:
comment_body: ${{ github.event.comment.body }}
comment_user: ${{ github.event.comment.user.login }}
comment_id: ${{ github.event.comment.id }}
issue_number: ${{ github.event.issue.number }}
############################## Comma separated list - like 'linuxmint/xapp, linuxmint/cinnamon-desktop'
dependencies: