Skip to content

Commit

Permalink
Add new code owners (#722)
Browse files Browse the repository at this point in the history
* add STFC code owners

* remove Stefan

---------

Co-authored-by: Steve Wood <[email protected]>
(cherry picked from commit 1e7dc7a)

# Conflicts:
#	.github/workflows/deploy-docs.yml
  • Loading branch information
adekusar-drl authored and mergify[bot] committed Feb 22, 2024
1 parent 8893f26 commit f74b826
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# least one codeowner. However, all Qiskit team members can (and should!) review the PRs.

# Global rule, unless specialized by a later one
* @stefan-woerner @woodsp-ibm @adekusar-drl
* @woodsp-ibm @adekusar-drl @smens @edoaltamura @oscar-wallis @OkuyanBoga @Benjamin-Symons

37 changes: 37 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ concurrency:

jobs:
docs_publish:
<<<<<<< HEAD
if: ${{ startsWith(github.ref, 'refs/heads/stable') && contains('[adekusar-drl","mtreinish","woodsp-ibm","smens","edoaltamura","oscar-wallis","OkuyanBoga","Benjamin-Symons"]', github.actor) }}
=======
if: ${{ startsWith(github.ref, 'refs/heads/stable') && contains('["adekusar-drl","mtreinish","woodsp-ibm","smens","edoaltamura","oscar-wallis","OkuyanBoga","Benjamin-Symons"]', github.actor) }}
>>>>>>> 1e7dc7a (Add new code owners (#722))
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -48,6 +52,7 @@ jobs:
tools/ignore_untagged_notes.sh
make html
shell: bash
<<<<<<< HEAD
- name: Bypass Jekyll Processing # Necessary for setting the correct css path
run: touch docs/_build/html/.nojekyll
- name: Deploy
Expand All @@ -56,3 +61,35 @@ jobs:
folder: docs/_build/html/
clean-exclude: |
locale/*
=======
deploy-translatable-strings:
if: ${{ startsWith(github.ref, 'refs/heads/stable') && contains('["adekusar-drl","mtreinish","woodsp-ibm","smens","edoaltamura","oscar-wallis","OkuyanBoga","Benjamin-Symons"]', github.actor) }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install jupyter qiskit[visualization] 'torchvision<0.10.0' tox
sudo apt-get install -y graphviz pandoc
- name: Build and publish
env:
encrypted_deploy_po_branch_key: ${{ secrets.encrypted_deploy_po_branch_key }}
encrypted_deploy_po_branch_iv: ${{ secrets.encrypted_deploy_po_branch_iv }}
QISKIT_PARALLEL: False
QISKIT_DOCS_BUILD_TUTORIALS: 'always'
run: |
echo "earliest_version: 0.1.0" >> releasenotes/config.yaml
tools/ignore_untagged_notes.sh
tools/deploy_translatable_strings.sh
shell: bash
>>>>>>> 1e7dc7a (Add new code owners (#722))

0 comments on commit f74b826

Please sign in to comment.