mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
5b0622bc4d
PR prepares CI to the GitHub Merge Queues. All github actions that were running in PR adjusted so they can run in the merge queues. Zombienet jobs will do nothing during PRs but they will run during merge queues. Jobs that will be skipped during PR: - all zombienet jobs - all publish docker jobs Jobs that will be skipped during merge queue: - check-labels - check-prdoc - pr-custom-review - review trigger cc https://github.com/paritytech/ci_cd/issues/862
24 lines
516 B
YAML
24 lines
516 B
YAML
name: gitspiegel sync
|
|
|
|
# This workflow doesn't do anything, it's only use is to trigger "workflow_run"
|
|
# webhook, that'll be consumed by gitspiegel
|
|
# This way, gitspiegel won't do mirroring, unless this workflow runs,
|
|
# and running the workflow is protected by GitHub
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- unlocked
|
|
- ready_for_review
|
|
- reopened
|
|
merge_group:
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Do nothing
|
|
run: echo "let's go"
|