-
Notifications
You must be signed in to change notification settings - Fork 67
58 lines (48 loc) · 1.97 KB
/
update-conferences.yml
File metadata and controls
58 lines (48 loc) · 1.97 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Update conference deadlines
# Refreshes _data/conferences.yml from the ccfddl/ccf-deadlines dataset and
# opens a pull request with the proposed changes for human review. It never
# pushes to a deploy branch directly — a maintainer reviews and merges.
on:
schedule:
- cron: "0 6 * * 1" # every Monday 06:00 UTC
workflow_dispatch: {} # allow manual runs from the Actions tab
permissions:
contents: write
pull-requests: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout source branch
uses: actions/checkout@v4
with:
ref: source
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install "ruamel.yaml>=0.18"
- name: Refresh conference data
run: python scripts/update_conferences.py
- name: Open pull request
uses: peter-evans/create-pull-request@v6
with:
base: source
branch: bot/update-conference-deadlines
delete-branch: true
add-paths: _data/conferences.yml
commit-message: "chore: refresh conference deadlines from ccfddl"
title: "Update conference deadlines from ccfddl"
labels: automated
body: |
Automated refresh of `_data/conferences.yml` from the
[ccfddl/ccf-deadlines](https://github.com/ccfddl/ccf-deadlines) dataset.
Only entries with a `ccfddl:` key are touched (ICASSP, Interspeech,
SLT, ICML, ICLR, NeurIPS); identity/curation fields
(`name`, `acronym`) are preserved. Manually-maintained
entries such as ARR are left untouched.
**Please verify the proposed dates against each conference's official
site before merging** — the upstream dataset is community-maintained
and can be incomplete or out of date. If there is nothing to update,
no PR is created.