-
Notifications
You must be signed in to change notification settings - Fork 164
39 lines (31 loc) · 1.19 KB
/
update-braket-publications.yml
File metadata and controls
39 lines (31 loc) · 1.19 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
name: Update Braket Publications
on:
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-publications:
runs-on: ubuntu-latest
if: github.repository == 'amazon-braket/amazon-braket-sdk-python'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run update-braket-publications script
run: python3 bin/update-braket-publications.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update-braket-publications
delete-branch: true
title: "documentation: update recent publications using Amazon Braket"
body: |
Automated update of PUBLICATIONS.md with recent arXiv preprints that use Amazon Braket.
This PR was created by the weekly scheduled workflow that runs `bin/update-braket-publications.py` to fetch arXiv preprints mentioning Amazon Braket from the past 12 months.
commit-message: "documentation: update PUBLICATIONS.md"