-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.21 KB
/
auto-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
name: Auto Update
on:
push:
branches:
- main
schedule:
- cron: '0 */36 * * *'
jobs:
auto-update:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Run PHP CS Fixer
run: bin/update-stats
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Stats Update
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1.1.3
with:
token: ${{ secrets.BLADE_ICONS_PACKAGES_REPO_ACCESS_TOKEN }}
repository: codeat3/blade-icons-packages
event-type: collection-updated
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'