-
Notifications
You must be signed in to change notification settings - Fork 162
doc: Update script and workflow to update README with arXiv Braket publications #1221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
axif0
wants to merge
5
commits into
amazon-braket:main
Choose a base branch
from
axif0:aws
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3ef3b5b
script and workflow to update README with arXiv Braket publications
axif0 4d82a03
fix: Update month format in arXiv paper fetching to full month name
axif0 87d96d4
chore: Update README and automate publication updates for recent arXi…
axif0 7a15c62
Merge branch 'main' into aws
axif0 b3cae6f
refactor: Implement `Classification` enum for publication types, upda…
axif0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,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" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Recent Publications Using Amazon Braket | ||
|
|
||
| This file is automatically updated by `bin/update-braket-publications.py`. | ||
|
|
||
| ## Publications Using Amazon Braket | ||
|
|
||
| | Year | Month | Title | Authors | Link | | ||
| |------|-------|-------|---------|------| | ||
| | 2026 | January | Investigation of Hardware Architecture Effects on Quantum Algorithm Performance: A Comparative Hardware Study | Askar Oralkhan, Temirlan Zhaxalykov | [arXiv:2601.05286](https://arxiv.org/abs/2601.05286) | | ||
| | 2025 | March | qReduMIS: A Quantum-Informed Reduction Algorithm for the Maximum Independent Set Problem | Martin J. A. Schuetz, Romina Yalovetzky, Ruben S. Andrist, Grant Salton, Yue Sun, Rudy Raymond, Shouvanik Chakrabarti, Atithi Acharya, Ruslan Shaydulin, Marco Pistoia, Helmut G. Katzgraber | [arXiv:2503.12551](https://arxiv.org/abs/2503.12551) | | ||
|
|
||
| ## Publications Mentioning Amazon Braket | ||
|
|
||
| | Year | Month | Title | Authors | Link | | ||
| |------|-------|-------|---------|------| | ||
| | 2026 | January | Evaluating state-of-the-art cloud quantum computers for quantum neural networks in gravitational waves data analysis | Maria-Catalina Isfan, Laurentiu-Ioan Caramete, Ana Caramete | [arXiv:2601.14036](https://arxiv.org/abs/2601.14036) | | ||
| | 2025 | October | What is Quantum Computer Security? | Sanjay Deshpande, Jakub Szefer | [arXiv:2510.07334](https://arxiv.org/abs/2510.07334) | | ||
| | 2025 | October | Quantum Computing as a Service -- a Software Engineering Perspective | Aakash Ahmad, Muhammad Waseem, Bakheet Aljedaani, Mahdi Fahmideh, Peng Liang, Feras Awaysheh | [arXiv:2510.04982](https://arxiv.org/abs/2510.04982) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why older version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bumped
actions/checkoutandactions/setup-pythonto v6.