This is an autogenerated patch header for a single-debian-patch file. The
delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.

--- /dev/null
+++ blackbox-terminal-0.13.2+pq.1/.gitlab-ci.yml.DISABLE
@@ -0,0 +1,60 @@
+include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
+
+variables:
+  BUNDLE_NAME: "blackbox.flatpak"
+
+flatpak:
+  extends: .flatpak
+  image: 'quay.io/gnome_infrastructure/gnome-runtime-images:gnome-master'
+  timeout: 90m
+  variables:
+    GIT_SUBMODULE_STRATEGY: normal
+
+    # Replace with your manifest path
+    MANIFEST_PATH: "com.raggesilver.BlackBox.json"
+    RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
+    # Replace with your application name, as written in the manifest
+    FLATPAK_MODULE: "blackbox"
+    APP_ID: "com.raggesilver.BlackBox"
+    BUNDLE: ${BUNDLE_NAME}
+  before_script:
+    - flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
+
+persist_artifacts:
+  needs:
+    - job: flatpak
+      artifacts: true
+  script:
+    - PA_JOB_ID=${CI_JOB_ID}
+    - echo "PA_JOB_ID=$PA_JOB_ID" >> persist_artifacts.env
+  artifacts:
+    name: ${BUNDLE_NAME}
+    paths:
+      - ${BUNDLE_NAME}
+    reports:
+      # To ensure we've access to this file in the next stage
+      dotenv: persist_artifacts.env
+    expire_in: never
+  # Only run this for tag pipelines (releases)
+  rules:
+    - if: $CI_COMMIT_TAG
+
+# https://crypt.codemancers.com/posts/2021-08-31-release-artifacts-using-gitlab-cicd/
+release:
+  image: registry.gitlab.com/gitlab-org/release-cli:latest
+  script:
+    - echo "Releasing ${CI_COMMIT_TAG}"
+  needs:
+    - job: persist_artifacts
+      artifacts: true
+  release:
+    name: 'Release $CI_COMMIT_TAG'
+    description: 'Created using the release-cli'
+    tag_name: '$CI_COMMIT_TAG'
+    assets:
+      links:
+        - name: 'Flatpak bundle'
+          url: 'https://gitlab.gnome.org/raggesilver/blackbox/-/jobs/${PA_JOB_ID}/artifacts/file/${BUNDLE_NAME}'
+  # Only run this for tag pipelines (releases)
+  rules:
+    - if: $CI_COMMIT_TAG
