forked from ome/openmicroscopy
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 942 Bytes
/
update.yaml
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
name: "Update version"
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
name: Update dependencies
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: update versions
run: |
bash update_dependencies.sh
- name: Set up configuration
run: |
git config --global user.email [email protected]
git config --global user.name github-actions
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
labels: include
token: ${{secrets.ACTION_API_TOKEN}}
commit-message: "update dependencies"
delete-branch: true
title: "update dependencies"
body: |
- This PR contains changes from upstream repositories
Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request