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
2 changes: 1 addition & 1 deletion .github/workflows/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ concurrency:

jobs:
agent:
uses: YiAgent/OpenCI/.github/workflows/reusable-agent.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-agent.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
task: ${{ inputs.task }}
prompt: ${{ inputs.prompt }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ concurrency:

jobs:
self-test:
uses: YiAgent/OpenCI/.github/workflows/reusable-self-test.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-self-test.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
runner: ubuntu-latest
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:

jobs:
ci:
uses: YiAgent/OpenCI/.github/workflows/reusable-ci.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-ci.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ github.sha }}
registry: ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ concurrency:

jobs:
deps:
uses: YiAgent/OpenCI/.github/workflows/reusable-deps.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-deps.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
runner: blacksmith-2vcpu-ubuntu-2404
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
&& github.event.workflow_run.name == 'ci'
&& github.event.workflow_run.conclusion == 'success')
|| (github.event_name == 'workflow_dispatch' && inputs.mode == 'stg')
uses: YiAgent/OpenCI/.github/workflows/reusable-stg.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-stg.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
app-name: ${{ vars.APP_NAME || github.event.repository.name }}
image-name: ${{ vars.IMAGE_NAME || github.event.repository.name }}
Expand All @@ -59,7 +59,7 @@ jobs:
&& github.event.workflow_run.name == 'release'
&& github.event.workflow_run.conclusion == 'success')
|| (github.event_name == 'workflow_dispatch' && inputs.mode == 'prd')
uses: YiAgent/OpenCI/.github/workflows/reusable-prd.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-prd.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
app-name: ${{ vars.APP_NAME || github.event.repository.name }}
image-name: ${{ vars.IMAGE_NAME || github.event.repository.name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:

jobs:
docs:
uses: YiAgent/OpenCI/.github/workflows/reusable-docs.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-docs.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
build-cmd: ${{ vars.DOCS_BUILD_CMD || '' }}
docs-path: ${{ vars.DOCS_DIR || 'docs' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/issue-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ concurrency:
jobs:
lifecycle:
if: github.event_name == 'issues' || github.event_name == 'issue_comment'
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: lifecycle
runner: blacksmith-2vcpu-ubuntu-2404
Expand All @@ -52,7 +52,7 @@ jobs:

ingest:
if: github.event_name == 'repository_dispatch'
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: ingest
runner: blacksmith-2vcpu-ubuntu-2404
Expand All @@ -67,7 +67,7 @@ jobs:

maintenance:
if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.mode == 'maintenance')
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: maintenance
runner: blacksmith-2vcpu-ubuntu-2404
Expand All @@ -82,7 +82,7 @@ jobs:

manual:
if: github.event_name == 'workflow_dispatch' && inputs.mode != 'maintenance'
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-issue.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: ${{ inputs.mode }}
runner: blacksmith-2vcpu-ubuntu-2404
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/observability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
jobs:
observe-canary:
if: ${{ github.event_name == 'schedule' && github.event.schedule == '*/15 * * * *' }}
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: canary-watch
runner: blacksmith-2vcpu-ubuntu-2404
Expand All @@ -45,7 +45,7 @@ jobs:

observe-drift:
if: ${{ github.event_name == 'schedule' && github.event.schedule == '0 4 * * *' }}
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: terraform-drift
infra-dir: ${{ vars.INFRA_DIR || 'infrastructure' }}
Expand All @@ -61,7 +61,7 @@ jobs:
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
|| github.event_name == 'repository_dispatch'
|| (github.event_name == 'workflow_dispatch' && inputs.mode == 'verify-fix')
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-observability.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: verify-fix
runner: blacksmith-2vcpu-ubuntu-2404
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
if: |
!contains(fromJSON('["pr-review","flag-audit"]'),
needs.resolve-mode.outputs.mode)
uses: YiAgent/OpenCI/.github/workflows/reusable-maintenance.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-maintenance.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: ${{ needs.resolve-mode.outputs.mode }}
openci-ref: ${{ needs.resolve-mode.outputs.openci-ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ concurrency:

jobs:
checks:
uses: YiAgent/OpenCI/.github/workflows/reusable-pr.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-pr.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
enable-ai-review: true
enable-eval: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:

jobs:
release:
uses: YiAgent/OpenCI/.github/workflows/reusable-release.yml@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/.github/workflows/reusable-release.yml@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
mode: ${{ inputs.mode || 'both' }}
image-name: ${{ vars.IMAGE_NAME || github.event.repository.name }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/reusable-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- name: Probe secrets
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- id: detect
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- id: build
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- id: scan
Expand All @@ -234,7 +234,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- uses: ./.openci/actions/ci/check-migration
Expand All @@ -304,7 +304,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- uses: ./.openci/actions/ci/eval-smoke
Expand Down Expand Up @@ -486,7 +486,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: { persist-credentials: false }
- name: Resolve OpenCI ref and checkout
uses: YiAgent/OpenCI/actions/_common/resolve-openci@7394bc9a6a4aeba5cd738e726cf1fce9c0f22043
uses: YiAgent/OpenCI/actions/_common/resolve-openci@b4de059cdaaf19a883ca372cf25a009ad75b7cc8
with:
openci-ref: ${{ inputs.openci-ref }}
- name: Download ci-context artifact
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ deps:
softprops/action-gh-release: "b4309332981a82ec1c5618f44dd2e27cc8bfbfda" # v3.0.0

# ── Self (OpenCI vendoring itself via remote action reference) ──────────
YiAgent/OpenCI: "7394bc9a6a4aeba5cd738e726cf1fce9c0f22043" # resolve-openci bootstrap
YiAgent/OpenCI: "b4de059cdaaf19a883ca372cf25a009ad75b7cc8" # resolve-openci bootstrap

# ─────────────────────────────────────────────────────────────────────────────
# Reusable workflow catalog (consumed via `uses: YiAgent/OpenCI/.github/workflows/<id>.yml@<ref>`)
Expand Down
Loading