-
-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (32 loc) · 1.19 KB
/
maintenance.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
name: Maintenance
on:
schedule:
- cron: '0 13 * * 1'
workflow_dispatch:
jobs:
update-libraries:
name: Update Libraries
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Update fenster
run: wget https://raw.githubusercontent.com/zserge/fenster/main/fenster.h -O src/fenster.h
- name: Update compat-5.3
run: |
wget https://raw.githubusercontent.com/lunarmodules/lua-compat-5.3/master/c-api/compat-5.3.h -O src/compat-5.3.h
wget https://raw.githubusercontent.com/lunarmodules/lua-compat-5.3/master/c-api/compat-5.3.c -O src/compat-5.3.c
- name: Create pull request
uses: peter-evans/[email protected]
with:
commit-message: 'chore(libs): update libraries'
signoff: true
branch: maintenance/update-libraries
delete-branch: true
title: 'chore(libs): update libraries'
body: |
This PR updates the libraries used by the project.
labels: libraries
reviewers: ${{ github.repository_owner }}