Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 666941f
Author: Andrija Paurevic <[email protected]>
Date:   Fri Jan 24 11:22:28 2025 -0500

    `qml.execute` no longer accepts `mcm_config` argument (#6807)

    **Context:**

    Further `qml.workflow` clean-up. This enables `qml.execute` to mimic the
    signature of `QNode`. This ensures that we don't get incompatible
    configurations because we have two different entry points.

    **Description of the Change:**
    - [x] Catalyst: PennyLaneAI/catalyst#1452
    - [x] Lightning: No instances of deprecated code found.
    - [x] QML Demos: No instances of deprecated code found.
    - [x] Pennylane-AQT: No instances of deprecated code found.
    - [x] Pennylane-Qiskit: No instances of deprecated code found.
    - [x] Pennylane-IonQ: No instances of deprecated code found.
    - [x] Pennylane-Qrack: No instances of deprecated code found.
    - [x] Pennylane-Cirq: No instances of deprecated code found.
    - [x] Pennylane-Qulacs: No instances of deprecated code found.

    Introduce kwargs `postselect_mode` and `mcm_method` to `qml.execute`
    signature. Raise deprecation warning to user if they try to use
    `mcm_config` kwarg.

    Side-effect: Had to `xfail` any tests that had to do with Catalyst since
    they assume certain keys from the `QNode.execute_kwargs`. Will be
    reverted in #6873.

    **Benefits:**

    Keyword parity with `qml.QNode`.

    **Possible Drawbacks:** None identified.

    [sc-80541]

    ---------

    Co-authored-by: Christina Lee <[email protected]>
    Co-authored-by: Yushao Chen (Jerry) <[email protected]>

commit dbb3315
Author: ringo-but-quantum <[email protected]>
Date:   Fri Jan 24 09:51:39 2025 +0000

    [no ci] bump nightly version

commit f367e01
Author: Rashid N H M <[email protected]>
Date:   Thu Jan 23 10:47:17 2025 -0500

    Add merge queue trigger for required workflows (#6860)

    **Context:**
    This pull request adds a new trigger to the existing workflows that run
    `on.pull_request`. This trigger indicates to GitHub which workflows
    needs to be run when a merge queue is building.

    **Description of the Change:**
    The change is adding `on.merge_group` to our required workflows.

    **Benefits:**
    This change itself will not enable merge queues, that needs to be
    enabled from the admin settings of branch protection rules.

    The changes in this PR mainly tell merge queues which workflows to run.

    **Possible Drawbacks:**
    Usage of merge queue is a new thing for pennylane, if issues arise we
    can rollback.

    **Related GitHub Issues:**
    None. [sc-82039]

commit 8a12fa5
Author: Andrija Paurevic <[email protected]>
Date:   Thu Jan 23 10:06:38 2025 -0500

    Promote `gradient_kwargs` to a positional keyword argument in `QNode` (#6828)

    **Context:**
    `gradient_kwargs` is now a positional keyword argument for the `QNode`.
    This means you can not simply express,
    ```python
    qml.QNode(func, dev, h=1)
    ```
    instead, you must deliberately,
    ```python
    qml.QNode(func, dev, gradient_kwargs={"h":1})
    ```
    This allows easier and cleaner input validation.

    This PR could have wide-spread impact as it is very common to just
    specify `gradient_kwargs` casually as additional kwargs.
    - [x] Catalyst: PennyLaneAI/catalyst#1480
    - [x] Lightning:
    PennyLaneAI/pennylane-lightning#1045
    - [x] QML Demos: No instances of deprecated code found.
    - [x] Pennylane-AQT: No instances of deprecated code found.
    - [x] Pennylane-Qiskit: No instances of deprecated code found.
    - [x] Pennylane-IonQ: No instances of deprecated code found.
    - [x] Pennylane-Qrack: No instances of deprecated code found.
    - [x] Pennylane-Cirq: No instances of deprecated code found.
    - [x] Pennylane-Qulacs: No instances of deprecated code found.

    **Description of the Change:**

    Allow additional kwargs for now to ensure same functionality, but raise
    a deprecation warning. Append those additional kwargs to the internal
    gradient_kwargs dictionary.

    **Benefits:** Improved input validation for users.

    **Possible Drawbacks:** Might have missed some eco-system changes.
    Especially with CI **sometimes** not raising
    `PennyLaneDeprecationWarning`s as errors 😢 .

    [sc-81531]

    ---------

    Co-authored-by: Christina Lee <[email protected]>

commit 875ae11
Author: Christina Lee <[email protected]>
Date:   Thu Jan 23 09:31:47 2025 -0500

    Revert end-to-end jitting with default qubit (#6869)

    **Context:**

    In #6788 , we started allowing executions on default qubit to be jitted
    from end-to-end. Unfortunately, we found that the compilation overheads
    on these executions can get very, very expensive. So until we find a way
    to reduce the compilation overheads, we are using pure callbacks and
    conversion to numpy.

    **Description of the Change:**

    Default to `convert_to_numpy=False`, and xfail relevant tests. This
    change can be undone once we figure out how to resolve the compilation
    issue.

    **Benefits:**

    Reduced compilation overheads, because the execution itself does not get
    compiled.

    **Possible Drawbacks:**

    Slow down on post-compiled workflows. No way to jit an entire execution
    on default qubit.

    **Related GitHub Issues:**

    ---------

    Co-authored-by: Pietropaolo Frisoni <[email protected]>

commit 63cca88
Author: ringo-but-quantum <[email protected]>
Date:   Thu Jan 23 09:51:30 2025 +0000

    [no ci] bump nightly version

commit 61dbc71
Author: Andrija Paurevic <[email protected]>
Date:   Wed Jan 22 16:15:54 2025 -0500

    Deprecate `qml.gradients.hamiltonian_grad` (#6849)

    **Context:**

    **Description of the Change:**

    _Source-Code_

    Standard deprecation of `hamiltonian_grad` function.

    _Test suite_

    I noticed that the tests I've removed from `test_parameter_shift.py`
    have improved duplicates in `tests/workflow/interfaces` under the
    `TestHamiltonianWorkflows` test class. Therefore, they were all removed
    except `test_jax`. The reason is that this test follows the outdated
    workflow that still hits the branch in
    `parameter_shift.py::expval_param_shift` that raises the deprecation
    warning. So, I've added a warning and left that test. This should be
    removed with the `hamiltonian_grad` function next release.

    **Impact:**

    No deprecated code found elsewhere. Impact to the eco-system should be
    minimal.

    [sc-81526]

commit 3e1521b
Author: Mudit Pandey <[email protected]>
Date:   Wed Jan 22 11:09:07 2025 -0500

    [Capture] Add a `QmlPrimitive` class to differentiate between different types of primitives (#6847)

    This PR adds a `QmlPrimitive` subclass of `jax.core.Primitive`. This
    class contains a `prim_type` property set using a new `PrimitiveType`
    enum. `PrimitiveType`s currently available are "default", "operator",
    "measurement", "transform", and "higher_order". This can be made more or
    less fine grained as needed, but should be enough to differentiate
    between different types of primitives for now. Additionally, this PR:

    * updates `NonInterpPrimitive` to be a subclass of `QmlPrimitive`
    * updates all existing PennyLane primitives to be either `QmlPrimitive`
    or `NonInterpPrimitive`. See [this
    comment](#6851 (comment))
    to see the logic used to determine which `Primitive` subclass is used
    for each primitive.
    * updates `PlxprInterpreter.eval` and `CancelInversesInterpreter.eval`
    to use this `prim_type` property.

    [sc-82420]

    ---------

    Co-authored-by: Pietropaolo Frisoni <[email protected]>

commit fdf34ec
Author: ringo-but-quantum <[email protected]>
Date:   Wed Jan 22 09:51:47 2025 +0000

    [no ci] bump nightly version

commit 90dc57c
Author: Christina Lee <[email protected]>
Date:   Tue Jan 21 16:21:11 2025 -0500

    [Capture] Add backprop validation (#6852)

    **Context:**

    We currently use un-validated backprop for differentiation with program
    capture. This leads to some unintuitive errors if you try and take a
    gradient on lightning with capture enabled.

    **Description of the Change:**

    Adds some validation to make sure the device supports backprop. Adds the
    backprop logic to a `_backprop` jvp function, and dispatches to that
    method based on the diff method.

    **Benefits:**

    Improved error messages when backprop or the requested diff method isn't
    supported.

    **Possible Drawbacks:**

    The code currently is a little clunky, but it is private so we should be
    able to move things around once we have more information.

    **Related GitHub Issues:**

    [sc-82166]

commit 98bb29b
Author: Isaac De Vlugt <[email protected]>
Date:   Tue Jan 21 14:14:39 2025 -0500

    `lie_closure_dense` typo in docstring (#6858)

    **Context:**

    **Description of the Change:** Docstring code example

    **Benefits:** Docstring code example works

    **Possible Drawbacks:** 0️⃣

    **Related GitHub Issues:**

commit fe9c9a1
Author: Yushao Chen (Jerry) <[email protected]>
Date:   Tue Jan 21 13:48:22 2025 -0500

    Fix the deprecated usage of `MultiControlledX` in labs (#6862)

    **Context:**
    In the tests
    `pennylane/labs/tests/resource_estimation/ops/op_math/test_controlled_ops.py`
    there are several test suites that were using the deprecated interfaces
    of `MultiControlledX`, which will fail after the removal of
    corresponding deprecated `control_wires` arg.
    We fix the usages in this PR.

    **Description of the Change:**

    **Benefits:**

    **Possible Drawbacks:**

    **Related GitHub Issues:**

commit 872607d
Author: Mudit Pandey <[email protected]>
Date:   Tue Jan 21 11:48:25 2025 -0500

    Bump `torch` version in CI to 2.5.0 (#6868)

    As name says. We should be testing against the latest version of
    `torch`. This PR updates the torch version used in CI to `2.5.0`.

    Also updated torch installation to use `~=` instead of `==` for choosing
    the version, so that bug fix releases (highest possible `2.5.X`) are
    automatically used instead of sticking with `2.5.0`. This should be a
    safe change to make, as torch only adds bug fixes to patch releases and
    no breaking changes
    ([ref](https://lightning.ai/docs/pytorch/stable/versioning.html)).

commit 633b5bd
Author: Mudit Pandey <[email protected]>
Date:   Tue Jan 21 10:14:00 2025 -0500

    Update docs workflow schedule (#6867)

    [sc-82706]

    Docs workflow currently opens a PR to update stable deps on Wednesday,
    while the tests workflow opens the stable deps update PR on Monday.
    Having 2 PRs per week for the same thing is annoying, so the schedule
    time for the docs workflow should be the same as the tests workflow.

commit 37de975
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jan 21 09:31:51 2025 -0500

    Update stable dependency files (#6856)

commit a97fca5
Author: ringo-but-quantum <[email protected]>
Date:   Tue Jan 21 09:51:51 2025 +0000

    [no ci] bump nightly version

commit 5eaaccb
Author: David Wierichs <[email protected]>
Date:   Tue Jan 21 10:05:20 2025 +0100

    Add some explanations on `NonInterpPrimitive` class (#6851)

    **Context:**
    The capture module uses a variant of `jax.core.Primitive` called
    `NonInterpPrimitive`.
    There were questions about why we need this and what it does.

    **Description of the Change:**
    This PR only adds some explanations to the respective `md` file to
    motivate our usage of this primitive variant.

    **Benefits:**
    Explain code

    **Possible Drawbacks:**
    N/A

    **Related GitHub Issues:**

    ---------

    Co-authored-by: Mudit Pandey <[email protected]>
    Co-authored-by: Pietropaolo Frisoni <[email protected]>
  • Loading branch information
mudit2812 committed Jan 24, 2025
1 parent 46a94e7 commit 25c12e8
Show file tree
Hide file tree
Showing 69 changed files with 1,111 additions and 820 deletions.
15 changes: 8 additions & 7 deletions .github/stable/all_interfaces.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ isort==5.13.2
jax==0.4.28
jaxlib==0.4.28
Jinja2==3.1.5
keras==3.7.0
keras==3.8.0
kiwisolver==1.4.8
lazy-object-proxy==1.10.0
libclang==18.1.1
Expand Down Expand Up @@ -68,12 +68,12 @@ nvidia-nccl-cu12==2.20.5
nvidia-nvjitlink-cu12==12.6.85
nvidia-nvtx-cu12==12.1.105
opt_einsum==3.4.0
optree==0.13.1
optree==0.14.0
osqp==0.6.7.post3
packaging==24.2
pandas==2.2.3
pathspec==0.12.1
PennyLane_Lightning==0.40.0
PennyLane_Lightning==0.41.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
Expand All @@ -83,7 +83,7 @@ protobuf==4.25.5
py==1.11.0
py-cpuinfo==9.0.0
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
pylint==2.7.4
pyparsing==3.2.1
pytest==8.3.4
Expand All @@ -101,7 +101,8 @@ qdldl==0.1.7.post5
requests==2.32.3
rich==13.9.4
rustworkx==0.15.1
scipy==1.15.0
scipy==1.15.1
scipy-openblas32==0.3.28.0.2
scs==3.2.7.post2
six==1.17.0
smmap==5.0.2
Expand All @@ -115,14 +116,14 @@ termcolor==2.5.0
tf_keras==2.16.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
torch==2.3.0
triton==2.3.0
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
Werkzeug==3.1.3
wrapt==1.12.1
11 changes: 6 additions & 5 deletions .github/stable/core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ osqp==0.6.7.post3
packaging==24.2
pandas==2.2.3
pathspec==0.12.1
PennyLane_Lightning==0.40.0
PennyLane_Lightning==0.41.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
Expand All @@ -52,7 +52,7 @@ prompt_toolkit==3.0.48
py==1.11.0
py-cpuinfo==9.0.0
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
pylint==2.7.4
pyparsing==3.2.1
pytest==8.3.4
Expand All @@ -70,19 +70,20 @@ qdldl==0.1.7.post5
requests==2.32.3
rich==13.9.4
rustworkx==0.15.1
scipy==1.15.0
scipy==1.15.1
scipy-openblas32==0.3.28.0.2
scs==3.2.7.post2
six==1.17.0
smmap==5.0.2
tach==0.13.1
termcolor==2.5.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
wrapt==1.12.1
30 changes: 15 additions & 15 deletions .github/stable/external.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ clarabel==0.9.0
click==8.1.8
comm==0.2.2
contourpy==1.3.1
cotengra==0.6.2
cotengra==0.7.0
coverage==7.6.10
cryptography==44.0.0
cvxopt==1.3.2
cvxpy==1.6.0
cycler==0.12.1
cytoolz==1.0.1
debugpy==1.8.11
debugpy==1.8.12
decorator==5.1.1
defusedxml==0.7.1
diastatic-malt==2.15.2
Expand All @@ -60,8 +60,8 @@ h11==0.14.0
h5py==3.12.1
httpcore==1.0.7
httpx==0.28.1
ibm-cloud-sdk-core==3.22.0
ibm-platform-services==0.59.0
ibm-cloud-sdk-core==3.22.1
ibm-platform-services==0.59.1
identify==2.6.5
idna==3.10
iniconfig==2.0.0
Expand Down Expand Up @@ -89,7 +89,7 @@ jupyterlab==4.3.4
jupyterlab_pygments==0.3.0
jupyterlab_server==2.27.3
jupyterlab_widgets==1.1.11
keras==3.7.0
keras==3.8.0
kiwisolver==1.4.8
lark==1.1.9
lazy-object-proxy==1.10.0
Expand Down Expand Up @@ -120,7 +120,7 @@ numba==0.60.0
numpy==1.26.4
opt_einsum==3.4.0
optax==0.2.4
optree==0.13.1
optree==0.14.0
osqp==0.6.7.post3
overrides==7.7.0
packaging==24.2
Expand All @@ -129,8 +129,8 @@ pandocfilters==1.5.1
parso==0.8.4
pathspec==0.12.1
pbr==6.1.0
PennyLane-Catalyst==0.10.0.dev39
PennyLane-qiskit @ git+https://github.com/PennyLaneAI/pennylane-qiskit.git@40a4d24f126e51e0e3e28a4cd737f883a6fd5ebc
PennyLane-Catalyst==0.11.0.dev1
PennyLane-qiskit @ git+https://github.com/PennyLaneAI/pennylane-qiskit.git@b46fbca3372979534bc33af701194df548cf4b16
PennyLane_Lightning==0.40.0
PennyLane_Lightning_Kokkos==0.40.0.dev41
pexpect==4.9.0
Expand All @@ -148,10 +148,10 @@ pure_eval==0.2.3
py==1.11.0
py-cpuinfo==9.0.0
pycparser==2.22
pydantic==2.10.4
pydantic==2.10.5
pydantic_core==2.27.2
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
PyJWT==2.10.1
pylint==2.7.4
pyparsing==3.2.1
Expand All @@ -173,11 +173,11 @@ pyzmq==26.2.0
pyzx==0.8.0
qdldl==0.1.7.post5
qiskit==1.2.4
qiskit-aer==0.15.1
qiskit-aer==0.16.0
qiskit-ibm-provider==0.11.0
qiskit-ibm-runtime==0.29.0
quimb==1.10.0
referencing==0.35.1
referencing==0.36.1
requests==2.32.3
requests_ntlm==1.3.0
rfc3339-validator==0.1.4
Expand Down Expand Up @@ -211,7 +211,7 @@ tf_keras==2.16.0
tinycss2==1.4.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
toolz==1.0.0
tornado==6.4.2
Expand All @@ -222,12 +222,12 @@ typing_extensions==4.12.2
tzdata==2024.2
uri-template==1.3.0
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
webcolors==24.11.1
webencodings==0.5.1
websocket-client==1.8.0
websockets==14.1
websockets==14.2
Werkzeug==3.1.3
widgetsnbextension==3.6.10
wrapt==1.12.1
13 changes: 7 additions & 6 deletions .github/stable/jax.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ markdown-it-py==3.0.0
matplotlib==3.10.0
mccabe==0.6.1
mdurl==0.1.2
ml_dtypes==0.5.0
ml_dtypes==0.5.1
mypy-extensions==1.0.0
networkx==3.4.2
nodeenv==1.9.1
Expand All @@ -47,7 +47,7 @@ osqp==0.6.7.post3
packaging==24.2
pandas==2.2.3
pathspec==0.12.1
PennyLane_Lightning==0.40.0
PennyLane_Lightning==0.41.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
Expand All @@ -56,7 +56,7 @@ prompt_toolkit==3.0.48
py==1.11.0
py-cpuinfo==9.0.0
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
pylint==2.7.4
pyparsing==3.2.1
pytest==8.3.4
Expand All @@ -74,19 +74,20 @@ qdldl==0.1.7.post5
requests==2.32.3
rich==13.9.4
rustworkx==0.15.1
scipy==1.15.0
scipy==1.15.1
scipy-openblas32==0.3.28.0.2
scs==3.2.7.post2
six==1.17.0
smmap==5.0.2
tach==0.13.1
termcolor==2.5.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
wrapt==1.12.1
15 changes: 8 additions & 7 deletions .github/stable/tf.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ identify==2.6.5
idna==3.10
iniconfig==2.0.0
isort==5.13.2
keras==3.7.0
keras==3.8.0
kiwisolver==1.4.8
lazy-object-proxy==1.10.0
libclang==18.1.1
Expand All @@ -51,12 +51,12 @@ networkx==3.4.2
nodeenv==1.9.1
numpy==1.26.4
opt_einsum==3.4.0
optree==0.13.1
optree==0.14.0
osqp==0.6.7.post3
packaging==24.2
pandas==2.2.3
pathspec==0.12.1
PennyLane_Lightning==0.40.0
PennyLane_Lightning==0.41.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
Expand All @@ -66,7 +66,7 @@ protobuf==4.25.5
py==1.11.0
py-cpuinfo==9.0.0
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
pylint==2.7.4
pyparsing==3.2.1
pytest==8.3.4
Expand All @@ -84,7 +84,8 @@ qdldl==0.1.7.post5
requests==2.32.3
rich==13.9.4
rustworkx==0.15.1
scipy==1.15.0
scipy==1.15.1
scipy-openblas32==0.3.28.0.2
scs==3.2.7.post2
six==1.17.0
smmap==5.0.2
Expand All @@ -97,12 +98,12 @@ termcolor==2.5.0
tf_keras==2.16.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
Werkzeug==3.1.3
wrapt==1.12.1
11 changes: 6 additions & 5 deletions .github/stable/torch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ osqp==0.6.7.post3
packaging==24.2
pandas==2.2.3
pathspec==0.12.1
PennyLane_Lightning==0.40.0
PennyLane_Lightning==0.41.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
Expand All @@ -68,7 +68,7 @@ prompt_toolkit==3.0.48
py==1.11.0
py-cpuinfo==9.0.0
pydot==3.0.4
Pygments==2.19.0
Pygments==2.19.1
pylint==2.7.4
pyparsing==3.2.1
pytest==8.3.4
Expand All @@ -86,7 +86,8 @@ qdldl==0.1.7.post5
requests==2.32.3
rich==13.9.4
rustworkx==0.15.1
scipy==1.15.0
scipy==1.15.1
scipy-openblas32==0.3.28.0.2
scs==3.2.7.post2
six==1.17.0
smmap==5.0.2
Expand All @@ -95,13 +96,13 @@ tach==0.13.1
termcolor==2.5.0
toml==0.10.2
tomli==2.2.1
tomli_w==1.1.0
tomli_w==1.2.0
tomlkit==0.13.2
torch==2.3.0
triton==2.3.0
typing_extensions==4.12.2
tzdata==2024.2
urllib3==2.3.0
virtualenv==20.28.1
virtualenv==20.29.1
wcwidth==0.2.13
wrapt==1.12.1
7 changes: 5 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@

name: "Documentation check"
on:
merge_group:
types:
- checks_requested
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
# Scheduled trigger on Wednesdays at 3:00am UTC
# Scheduled trigger on Monday at 2:47am UTC
schedule:
- cron: "0 3 * * 3"
- cron: "47 2 * * 1"

permissions: write-all

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Formatting check
on:
merge_group:
types:
- checks_requested
pull_request:
types:
- opened
Expand Down
Loading

0 comments on commit 25c12e8

Please sign in to comment.