-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 768 Bytes
/
update-data.yml
File metadata and controls
35 lines (31 loc) · 768 Bytes
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
name: Update Data
on:
workflow_dispatch:
schedule:
- cron: 13 3 * * 1 # Weekly on Monday
push:
branches:
- main
paths-ignore:
- .github/**
- .gitattributes
- .gitignore
- LICENSE
- pint.json
- README.md
- '!.github/workflows/update-data.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
update-data:
uses: typisttech/.github/.github/workflows/create-auto-merged-pull-request-php.yml@v2
permissions:
contents: read
with:
command: composer data:update
php-version: '8.4'
branch: "tastendruck/github_actions/update-data/${{ github.ref_name }}"
labels: update_data
secrets: inherit