ci: add GitHub workflow for testing remote custom actions on PR #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/test-remote-actions.yml | |
name: Test Remote Custom Actions | |
on: | |
pull_request: | |
branches: | |
- main # 또는 테스트를 원하는 다른 브랜치 | |
jobs: | |
test_actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 # 현재 저장소(binary01.me-notion-cms)의 코드를 체크아웃합니다. | |
- name: Run Remote Greet Action | |
id: greet | |
uses: 01-binary/github-action-test/actions/greet-action@main # 원격 액션 참조 | |
with: | |
who-to-greet: 'Remote Tester Alice' | |
- name: Run Remote Goodbye Action | |
id: goodbye | |
uses: 01-binary/github-action-test/actions/goodbye-action@main # 원격 액션 참조 | |
with: | |
who-to-say-goodbye: 'Remote Tester Bob' |