forked from galaxyproject/galaxy-hub
-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (29 loc) · 909 Bytes
/
Copy pathupdate-eu-citations.yml
File metadata and controls
34 lines (29 loc) · 909 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
name: Update EU Citations
on:
workflow_dispatch:
schedule:
- cron: '00 23 * * 0'
permissions:
contents: write
pull-requests: write
jobs:
update-citations:
runs-on: ubuntu-latest
if: github.repository_owner == 'galaxyproject'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Sync citation bibliographies
run: python scripts/update-eu-citations.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: 'chore(eu): update citations'
title: 'Update EU citation bibliographies'
body: 'Auto-generated PR with updated citation bibliographies for Galaxy Europe and its subsites.'
branch: update-eu-citations
delete-branch: true