-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1009 Bytes
/
update-version-data.yml
File metadata and controls
42 lines (34 loc) · 1009 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
36
37
38
39
40
41
42
name: Update Version Data
on:
workflow_dispatch:
schedule:
- cron: 13 3 * * 1 # Weekly on Monday
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
update-data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
coverage: none
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- run: make version-data
env:
MAKEFLAGS: "--jobs=4 --output-sync=target"
- uses: typisttech/.github/.github/actions/create-auto-merged-pull-request@v3
with:
app-id: ${{ vars.TASTENDRUCK_APP_ID }}
private-key: ${{ secrets.TASTENDRUCK_PRIVATE_KEY }}
branch: "tastendruck/github_actions/update-data/${{ github.ref_name }}"
title: ":robot: `make version-data`"
labels: update_data