-
Notifications
You must be signed in to change notification settings - Fork 206
123 lines (100 loc) · 3.42 KB
/
auto-review.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: automatic review
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- develop
paths:
- Language/**
- tests/**
- .github/workflows/auto-review.yml
- LICENSE
pull_request:
branches:
- develop
paths:
- Language/**
- tests/**
- .github/workflows/auto-review.yml
- LICENSE
jobs:
code:
name: Automatic Review on Code [PHP ${{ matrix.php-version }}]
runs-on: ubuntu-22.04
if: github.repository == 'codeigniter4/translations'
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
permissions:
pull-requests: read
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: intl, mbstring
coverage: none
- name: Get composer cache directory
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Setup Composer's GitHub OAuth access
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: composer update --ansi
- name: Run Automatic Review Test Suite
run: vendor/bin/phpunit --color=always --group=auto-review
license:
name: Automatic Review on License
runs-on: ubuntu-22.04
permissions:
pull-requests: write
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: intl, mbstring
coverage: none
- name: Get composer cache directory
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Setup Composer's GitHub OAuth access
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: composer update --ansi
- name: Run Automatic Review Test Suite
run: vendor/bin/phpunit --color=always --group=license-review
- name: Update the License Year
if: failure() && github.event_name == 'push'
run: |
php .github/scripts/update-license
echo "LICENSE_UPDATED=true" >> $GITHUB_OUTPUT
id: license
- name: Create Pull Request for Updated License
if: failure() && steps.license.outputs.LICENSE_UPDATED == 'true' && github.event_name == 'push'
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore: update license year'
branch: update-license-year
delete-branch: true
base: develop
title: 'chore: update license year'