Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# https://github.com/actions/labeler

documentation:
- changed-files:
- any-glob-to-any-file:
- 'doc/**'
- '*.md'
- '*.rst'

circuits:
- changed-files:
- any-glob-to-any-file:
- 'src/braket/circuits/**'
- 'src/braket/parametric/**'
- 'src/braket/registers/**'

aws:
- changed-files:
- any-glob-to-any-file:
- 'src/braket/aws/**'
- 'src/braket/jobs/**'
- 'src/braket/tracking/**'

quantum-programs:
- changed-files:
- any-glob-to-any-file:
- 'src/braket/ahs/**'
- 'src/braket/annealing/**'
- 'src/braket/pulse/**'
- 'src/braket/program_sets/**'
- 'src/braket/timings/**'

devices:
- changed-files:
- any-glob-to-any-file:
- 'src/braket/devices/**'
- 'src/braket/emulation/**'
- 'src/braket/error_mitigation/**'
- 'src/braket/experimental_capabilities/**'

CI:
- changed-files:
- any-glob-to-any-file:
- '.github/**'
- 'bin/**'
- 'tox.ini'
- '.pre-commit-config.yaml'
- '.coveragerc'
Comment thread
rmshaffer marked this conversation as resolved.

build:
- changed-files:
- any-glob-to-any-file:
- 'setup.py'
- 'setup.cfg'
- 'pyproject.toml'
- 'MANIFEST.in'

examples:
- changed-files:
- any-glob-to-any-file:
- 'examples/**'
17 changes: 17 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Labeler

on:
pull_request_target:
types: [opened, synchronize, reopened]

permissions:
contents: read
pull-requests: write

jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
sync-labels: true
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with this

Loading