Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/octo-ci-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: Mininglamp-OSS/.github
ref: main
# NOTE: pinning to main; scripts and workflow always come from the
# same protected branch. For stricter version lock, pass a shared_ref
# input from caller workflows.
# NOTE: use job.workflow_sha so that scripts are always checked out at the
# exact same commit as this workflow file, keeping workflow and scripts
# in strict version lock (works correctly with both branch refs and tags).
ref: ${{ job.workflow_sha }}
path: _shared
sparse-checkout: scripts
sparse-checkout-cone-mode: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/octo-issue-feed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: Mininglamp-OSS/.github
ref: main
# NOTE: pinning to main; scripts and workflow always come from the
# same protected branch. For stricter version lock, pass a shared_ref
# input from caller workflows.
# NOTE: use job.workflow_sha so that scripts are always checked out at the
# exact same commit as this workflow file, keeping workflow and scripts
# in strict version lock (works correctly with both branch refs and tags).
ref: ${{ job.workflow_sha }}
path: _shared
sparse-checkout: scripts
sparse-checkout-cone-mode: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/octo-pr-feed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: Mininglamp-OSS/.github
ref: main
# NOTE: pinning to main; scripts and workflow always come from the
# same protected branch. For stricter version lock, pass a shared_ref
# input from caller workflows.
# NOTE: use job.workflow_sha so that scripts are always checked out at the
# exact same commit as this workflow file, keeping workflow and scripts
# in strict version lock (works correctly with both branch refs and tags).
ref: ${{ job.workflow_sha }}
path: _shared
sparse-checkout: scripts
sparse-checkout-cone-mode: false
Expand Down
Loading