Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/ci-probe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# CI diagnostic probe

Temporary branch-only marker used to reproduce the failing `master` checks through a pull-request-triggered workflow. It will be removed before merge.
26 changes: 26 additions & 0 deletions .github/workflows/ci-source-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI Source Snapshot

on:
pull_request:
branches: [master]

permissions:
contents: read

jobs:
snapshot:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@9f698171ed81b15d1823a05fc7211befd50c8ae0 # v6.0.3

- name: Build source archive
run: tar --exclude=.git -czf "$RUNNER_TEMP/csm-source.tgz" .

- name: Upload source archive
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: csm-source-${{ github.sha }}
path: ${{ runner.temp }}/csm-source.tgz
if-no-files-found: error
retention-days: 1
Loading