mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-09-19 09:40:12 +00:00
21 lines
599 B
YAML
21 lines
599 B
YAML
on:
|
|
pull_request:
|
|
concurrency: policy
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Redact evidence
|
|
id: redact-evidence
|
|
if: always()
|
|
run: |
|
|
go run ./integration/agentcompat/cmd/redact --output "$RUNNER_TEMP/nezha-agentcompat-redacted"
|
|
cp raw-secret "$RUNNER_TEMP/nezha-agentcompat-redacted/raw-secret"
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
|
|
if: always()
|
|
with:
|
|
path: ${{ runner.temp }}/nezha-agentcompat-redacted
|