-
Notifications
You must be signed in to change notification settings - Fork 28
46 lines (39 loc) · 1.01 KB
/
push.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
# SPDX-FileCopyrightText: 2022 Aleksandr Mezin <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
name: push
concurrency: ${{ github.workflow }}/${{ github.ref }}
on:
workflow_dispatch:
push:
branches-ignore:
- renovate/**
- weblate
tags-ignore:
- v*
paths-ignore:
- docs/**
- po/**
- README.md
- Vagrantfile
- vagrant-provision/**
jobs:
build:
uses: ./.github/workflows/build.yml
with:
testspace: ${{ !github.event.repository.fork }}
test:
needs: build
uses: ./.github/workflows/test.yml
with:
testspace: ${{ !github.event.repository.fork }}
translations:
uses: ./.github/workflows/pot.yml
with:
commit: ${{ github.ref_type == 'branch' && github.ref_name == github.event.repository.default_branch && !github.event.repository.fork }}
secrets: inherit
packaging:
needs: build
uses: ./.github/workflows/packaging.yml
with:
testspace: ${{ !github.event.repository.fork }}