Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Closed

test #212

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
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test-foo

on:
pull_request:

jobs:
test:
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- name: Run
env:
MACOS_PEM: ${{ secrets.MACOS_PEM }}
MACOS_CERTIFICATE_DER: ${{ secrets.MACOS_CERTIFICATE_DER }}
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
HOMEBREW_PAT: ${{ secrets.HOMEBREW_PAT }}
Comment on lines +12 to +16
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Production secrets (MACOS_PEM, MACOS_CERTIFICATE_DER, APP_STORE_CONNECT_API_KEY, CRATES_IO_TOKEN, HOMEBREW_PAT) are loaded but never used - they're only exposed during a 30-minute sleep. Remove these if not needed.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/test.yml
Line: 18:22

Comment:
Production secrets (`MACOS_PEM`, `MACOS_CERTIFICATE_DER`, `APP_STORE_CONNECT_API_KEY`, `CRATES_IO_TOKEN`, `HOMEBREW_PAT`) are loaded but never used - they're only exposed during a 30-minute sleep. Remove these if not needed.

How can I resolve this? If you propose a fix, please make it concise.

run: |
sleep 1800
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

30-minute sleep with no actual test execution. If this is for debugging, it should not be merged to main.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/test.yml
Line: 24:24

Comment:
30-minute sleep with no actual test execution. If this is for debugging, it should not be merged to main.

How can I resolve this? If you propose a fix, please make it concise.

Loading